Class CreationException

All Implemented Interfaces:
Serializable

public final class CreationException extends ACDPException
Thrown to indicate that an object can't be created due to any reason.
Author:
Beat Hörmann
See Also:
  • Constructor Details

    • CreationException

      public CreationException(String message)
      Constructs this type of exception with the specified message.
      Parameters:
      message - The message.
    • CreationException

      public CreationException(acdp.internal.Database_ db, String message)
      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

      public 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.
      Parameters:
      db - The database.
      tableName - The table name.
      message - The message.
    • CreationException

      public CreationException(acdp.internal.Table_ table, String message)
      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

      public CreationException(acdp.internal.Table_ table, String columnName, String message)
      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

      public CreationException(Throwable cause)
      Constructs this type of exception with the specified cause.
      Parameters:
      cause - The cause.
    • CreationException

      public 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.
      Parameters:
      db - The database.
      cause - The cause.
    • CreationException

      public 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.
      Parameters:
      table - The table.
      cause - The cause.
    • CreationException

      public CreationException(String message, Throwable cause)
      Constructs this type of exception with the specified message and cause.
      Parameters:
      message - The message.
      cause - The cause.
    • CreationException

      public 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.
      Parameters:
      db - The database.
      message - The message.
      cause - The cause.
    • CreationException

      public 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.
      Parameters:
      tableName - The table name.
      message - The message.
      cause - The cause.
    • CreationException

      public 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.
      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.