Package com.exasol.dbbuilder
Class DatabaseObjectException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.exasol.dbbuilder.DatabaseObjectException
-
- All Implemented Interfaces:
Serializable
public class DatabaseObjectException extends RuntimeException
Exception for database object generation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatabaseObjectException(DatabaseObject object, Exception cause)Create a new instance of aDatabaseObjectExceptionDatabaseObjectException(DatabaseObject object, String message)Create a new instance of aDatabaseObjectExceptionDatabaseObjectException(DatabaseObject object, String message, Exception cause)Create a new instance of aDatabaseObjectException
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFullyQualifiedObjectName()Get the database object nameStringgetObjectType()Get the database object type-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DatabaseObjectException
public DatabaseObjectException(DatabaseObject object, String message)
Create a new instance of aDatabaseObjectException- Parameters:
object- database objectmessage- error message
-
DatabaseObjectException
public DatabaseObjectException(DatabaseObject object, Exception cause)
Create a new instance of aDatabaseObjectException- Parameters:
object- database objectcause- reason we were unable to create the object
-
DatabaseObjectException
public DatabaseObjectException(DatabaseObject object, String message, Exception cause)
Create a new instance of aDatabaseObjectException- Parameters:
object- database objectmessage- error messagecause- reason we were unable to create the object
-
-