public class DeprecatedException
extends java.lang.RuntimeException
This exception may be thrown by service methods which themselves are deprecated, or that contain a deprecated combination of parameters.
Constructor and Description |
---|
DeprecatedException()
Constructs a new DeprecatedException with null as its detail
message.
|
DeprecatedException(java.lang.String message_)
Constructs a new DeprecatedException with the specified detail
message.
|
DeprecatedException(java.lang.String message_,
java.lang.Throwable t_)
Constructs a new DeprecatedException with the specified detail
message and cause.
|
DeprecatedException(java.lang.Throwable t_)
Constructs a new DeprecatedException with the specified cause
and a detail message of (cause==null ?
|
public DeprecatedException()
public DeprecatedException(java.lang.String message_)
message_
- the detail message. The detail message is saved for later
retrieval by the Throwable.getMessage() methodpublic DeprecatedException(java.lang.Throwable t_)
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.)public DeprecatedException(java.lang.String message_, java.lang.Throwable t_)
message_
- the detail message. The detail message is saved for later
retrieval by the Throwable.getMessage() methodt_
- 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.)Copyright © 2003-2024 Appian Corporation. All Rights Reserved.