Package com.bea.wcp.diameter
Class DiameterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.bea.wcp.diameter.DiameterException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MessageException
Base class for Diameter exception types.
- Author:
- Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new DiameterException with no detail message.DiameterException(String msg) Constructs a new DiameterException with the specified detail message.DiameterException(String msg, Throwable cause) Constructs a new DiameterException with the specified detail message and cause.DiameterException(Throwable cause) Constructs a new DiameterException with the specified cause and a detail message of(cause==null ? -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DiameterException
public DiameterException()Constructs a new DiameterException with no detail message. -
DiameterException
Constructs a new DiameterException with the specified detail message.- Parameters:
msg- the detail message
-
DiameterException
Constructs a new DiameterException with the specified detail message and cause.- Parameters:
msg- the detail messagecause- the cause, or null if none
-
DiameterException
Constructs a new DiameterException with the specified cause and a detail message of(cause==null ? null : cause.toString())- Parameters:
cause- the cause, or null if none
-