Class DiameterException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.bea.wcp.diameter.DiameterException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MessageException

public class DiameterException extends Exception
Base class for Diameter exception types.
Author:
Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
See Also:
  • Constructor Details

    • DiameterException

      public DiameterException()
      Constructs a new DiameterException with no detail message.
    • DiameterException

      public DiameterException(String msg)
      Constructs a new DiameterException with the specified detail message.
      Parameters:
      msg - the detail message
    • DiameterException

      public DiameterException(String msg, Throwable cause)
      Constructs a new DiameterException with the specified detail message and cause.
      Parameters:
      msg - the detail message
      cause - the cause, or null if none
    • DiameterException

      public DiameterException(Throwable cause)
      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