1 2 3 4 5 6 7 8 9 10 11 12 13
# frozen_string_literal: true class LessonError < Exception end class Lesson < ActiveRecord::Base has_and_belongs_to_many :students before_destroy :ensure_no_students def ensure_no_students raise LessonError unless students.empty? end end