Package org.apache.cxf
Class BusException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.cxf.common.i18n.Exception
-
- org.apache.cxf.BusException
-
- All Implemented Interfaces:
Serializable
public class BusException extends Exception
The BusException class is used to indicate a bus exception has occurred.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BusException(Throwable cause)
Constructs aBusException
with the provided cause.BusException(Message msg)
Constructs aBusException
with the provided detail message.BusException(Message msg, Throwable cause)
Constructs aBusException
with the detail message and cause provided.
-
Method Summary
-
Methods inherited from class org.apache.cxf.common.i18n.Exception
getCode, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BusException
public BusException(Message msg)
Constructs aBusException
with the provided detail message.
-
BusException
public BusException(Message msg, Throwable cause)
Constructs aBusException
with the detail message and cause provided.
-
BusException
public BusException(Throwable cause)
Constructs aBusException
with the provided cause.
-
-