()
| 18 | } |
| 19 | |
| 20 | func (m *TableDoesNotExistError) Error() string { |
| 21 | return "table with the name of " + m.tableName + " doesn't exist" |
| 22 | } |
| 23 | |
| 24 | // ColumnDoesNotExistError - error thrown when user tries to make operation on un-existing column |
| 25 | type ColumnDoesNotExistError struct { |
no outgoing calls