Exception: Flydata::SourcePostgresql::SyncGenerateTableDdl::TableMissingError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/flydata/source_postgresql/sync_generate_table_ddl.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, table) ⇒ TableMissingError

Returns a new instance of TableMissingError.



109
110
111
112
# File 'lib/flydata/source_postgresql/sync_generate_table_ddl.rb', line 109

def initialize(message, table)
  super(message)
  @table = table
end

Instance Attribute Details

#tableObject (readonly)

Returns the value of attribute table.



113
114
115
# File 'lib/flydata/source_postgresql/sync_generate_table_ddl.rb', line 113

def table
  @table
end