mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
errors now have their own file
This commit is contained in:
parent
052c79df01
commit
1187512243
3 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
|||
require 'ostruct'
|
||||
|
||||
require File.join(File.dirname(__FILE__), 'aasm', 'version')
|
||||
require File.join(File.dirname(__FILE__), 'aasm', 'errors')
|
||||
require File.join(File.dirname(__FILE__), 'aasm', 'base')
|
||||
require File.join(File.dirname(__FILE__), 'aasm', 'supporting_classes', 'state_transition')
|
||||
require File.join(File.dirname(__FILE__), 'aasm', 'supporting_classes', 'event')
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
module AASM
|
||||
class InvalidTransition < RuntimeError
|
||||
end
|
||||
|
||||
class UndefinedState < RuntimeError
|
||||
end
|
||||
|
||||
def self.included(base) #:nodoc:
|
||||
base.extend AASM::ClassMethods
|
||||
|
|
4
lib/aasm/errors.rb
Normal file
4
lib/aasm/errors.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
module AASM
|
||||
class InvalidTransition < RuntimeError; end
|
||||
class UndefinedState < RuntimeError; end
|
||||
end
|
Loading…
Add table
Reference in a new issue