Package acdp.exceptions
Class CreationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
acdp.exceptions.ACDPException
acdp.exceptions.CreationException
- All Implemented Interfaces:
Serializable
Thrown to indicate that an object can't be created due to any reason.
- Author:
- Beat Hörmann
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreationException
(acdp.internal.Database_ db, String message) Constructs this type of exception with a message composed from the specified database and the specified message.CreationException
(acdp.internal.Database_ db, String tableName, String message) Constructs this type of exception with a message composed from the specified database, the specified table name and the specified message.CreationException
(acdp.internal.Database_ db, String tableName, String message, Throwable cause) Constructs this type of exception with a detail message composed from the specified database, the specified table name, the specified message and with the specified cause.CreationException
(acdp.internal.Database_ db, String message, Throwable cause) Constructs this type of exception with a detail message composed from the first two parameters and with the specified cause.CreationException
(acdp.internal.Database_ db, Throwable cause) Constructs this type of exception with a detail message composed from the specified database and the specified cause.CreationException
(acdp.internal.Table_ table, String message) Constructs this type of exception with a message composed from the specified table and the specified message.CreationException
(acdp.internal.Table_ table, String columnName, String message) Constructs this type of exception with a message composed from the specified arguments.CreationException
(acdp.internal.Table_ table, String message, Throwable cause) Constructs this type of exception with a detail message composed from the specified table and messsage and with the specified cause.CreationException
(acdp.internal.Table_ table, Throwable cause) Constructs this type of exception with a detail message composed from the specified table and with the specified cause.CreationException
(String message) Constructs this type of exception with the specified message.CreationException
(String tableName, String message, Throwable cause) Constructs this type of exception with a detail message composed from the specified table name and message and with the specified cause.CreationException
(String message, Throwable cause) Constructs this type of exception with the specified message and cause.CreationException
(Throwable cause) Constructs this type of exception with the specified cause. -
Method Summary
Methods inherited from class acdp.exceptions.ACDPException
compose, prefix, prefix, prefix, prefix, prefix, prefix, prefix
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CreationException
Constructs this type of exception with the specified message.- Parameters:
message
- The message.
-
CreationException
Constructs this type of exception with a message composed from the specified database and the specified message.- Parameters:
db
- The database.message
- The message.
-
CreationException
Constructs this type of exception with a message composed from the specified database, the specified table name and the specified message.- Parameters:
db
- The database.tableName
- The table name.message
- The message.
-
CreationException
Constructs this type of exception with a message composed from the specified table and the specified message.- Parameters:
table
- The table.message
- The message.
-
CreationException
Constructs this type of exception with a message composed from the specified arguments.- Parameters:
table
- The table.columnName
- The name of the column.message
- The message.
-
CreationException
Constructs this type of exception with the specified cause.- Parameters:
cause
- The cause.
-
CreationException
Constructs this type of exception with a detail message composed from the specified database and the specified cause.- Parameters:
db
- The database.cause
- The cause.
-
CreationException
Constructs this type of exception with a detail message composed from the specified table and with the specified cause.- Parameters:
table
- The table.cause
- The cause.
-
CreationException
Constructs this type of exception with the specified message and cause.- Parameters:
message
- The message.cause
- The cause.
-
CreationException
Constructs this type of exception with a detail message composed from the first two parameters and with the specified cause.- Parameters:
db
- The database.message
- The message.cause
- The cause.
-
CreationException
Constructs this type of exception with a detail message composed from the specified table name and message and with the specified cause.- Parameters:
tableName
- The table name.message
- The message.cause
- The cause.
-
CreationException
Constructs this type of exception with a detail message composed from the specified table and messsage and with the specified cause.- Parameters:
table
- The table.message
- The message.cause
- The cause.
-
CreationException
public CreationException(acdp.internal.Database_ db, String tableName, String message, Throwable cause) Constructs this type of exception with a detail message composed from the specified database, the specified table name, the specified message and with the specified cause.- Parameters:
db
- The database.tableName
- The table name.message
- The message.cause
- The cause.
-