Class InvalidLinkTypeException

All Implemented Interfaces:
Serializable

@Deprecated public class InvalidLinkTypeException extends AppianException
Deprecated.
The Portal functionality will be removed in a future release. Use the Tempo Interface for similar functionality.
Exception that is thrown if the user references a link type using an id that does not correspond to any type stored in the database.
See Also:
  • Constructor Details

    • InvalidLinkTypeException

      public InvalidLinkTypeException()
      Deprecated.
      Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable)
    • InvalidLinkTypeException

      public InvalidLinkTypeException(String message_)
      Deprecated.
      Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable)
      Parameters:
      message_ - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method
    • InvalidLinkTypeException

      public InvalidLinkTypeException(Throwable t_)
      Deprecated.
      Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables (for example, PrivilegedActionException)
      Parameters:
      t_ - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • InvalidLinkTypeException

      public InvalidLinkTypeException(String message_, Throwable t_)
      Deprecated.
      Constructs a new exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
      Parameters:
      message_ - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method
      t_ - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)