Exception: MongoMapper::IllegalMigrationNameError
- Inherits:
-
MongoMapperError
- Object
- StandardError
- MongoMapperError
- MongoMapper::IllegalMigrationNameError
- Defined in:
- lib/mongrations/exceptions.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(name) ⇒ IllegalMigrationNameError
constructor
A new instance of IllegalMigrationNameError.
Constructor Details
#initialize(name) ⇒ IllegalMigrationNameError
Returns a new instance of IllegalMigrationNameError.
26 27 28 |
# File 'lib/mongrations/exceptions.rb', line 26 def initialize(name) super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed)") end |