1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
# frozen_string_literal: true
module ClickHouse
module MigrationSupport
module Errors
class Base < StandardError
def initialize(message = nil)
message = "\n\n#{message}\n\n" if message
super
end
end
class IllegalMigrationNameError < Base
def initialize(name = nil)
if name
super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed).")
else
super('Illegal name for migration.')
end
end
end
IrreversibleMigration = Class.new(Base)
LockError = Class.new(Base)
class DuplicateMigrationVersionError < Base
def initialize(version = nil)
if version
super("Multiple migrations have the version number #{version}.")
else
super('Duplicate migration version error.')
end
end
end
class DuplicateMigrationNameError < Base
def initialize(name = nil)
if name
super("Multiple migrations have the name #{name}.")
else
super('Duplicate migration name.')
end
end
end
class UnknownMigrationVersionError < Base
def initialize(version = nil)
if version
super("No migration with version number #{version}.")
else
super('Unknown migration version.')
end
end
end
end
end
end
|