Class NoPrimaryKeyException

All Implemented Interfaces:
Serializable

public class NoPrimaryKeyException extends DataSetException
Signals that a table has no primary key column where one is required.
Since:
Feb 19, 2002
Version:
$Revision$
Author:
Manuel Laflamme
See Also:
  • Constructor Details

    • NoPrimaryKeyException

      public NoPrimaryKeyException()
      Constructs a NoPrimaryKeyException with no detail message and no encapsulated exception.
    • NoPrimaryKeyException

      public NoPrimaryKeyException(String msg)
      Constructs a NoPrimaryKeyException with the specified detail message and no encapsulated exception.
      Parameters:
      msg - the detail message.
    • NoPrimaryKeyException

      public NoPrimaryKeyException(String msg, Throwable e)
      Constructs a NoPrimaryKeyException with the specified detail message and encapsulated exception.
      Parameters:
      msg - the detail message.
      e - the encapsulated exception.
    • NoPrimaryKeyException

      public NoPrimaryKeyException(Throwable e)
      Constructs a NoPrimaryKeyException with the encapsulated exception and use string representation as detail message.
      Parameters:
      e - the encapsulated exception.