Package com.tibco.tibjms.admin
Class TibjmsAdminException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- com.tibco.tibjms.admin.TibjmsAdminException
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 - Direct Known Subclasses:
- TibjmsAdminInvalidNameException,- TibjmsAdminJsonFileModifiedException,- TibjmsAdminNameExistsException,- TibjmsAdminSecurityException
 
 public class TibjmsAdminException extends java.lang.ExceptionThis is the general admin exception used when an error occurs with a call to the server.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description TibjmsAdminException(java.lang.String msg)Create a new TibjmsAdminException with given error message.TibjmsAdminException(java.lang.String msg, java.lang.Exception e)Create a new TibjmsAdminException with given error message and root exception.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprintStackTrace()Prints stack trace of this exception and of the internal exception if it is set.voidprintStackTrace(java.io.PrintStream s)Prints stack trace of this exception and of the internal exception if it is set.voidprintStackTrace(java.io.PrintWriter s)Prints stack trace of this exception and of the internal exception if it is set.java.lang.StringtoString()Generate a string representation of this TibjmsAdminException.
 
- 
- 
- 
Constructor Detail- 
TibjmsAdminExceptionpublic TibjmsAdminException(java.lang.String msg) Create a new TibjmsAdminException with given error message.- Parameters:
- msg- The error message for the exception.
 
 - 
TibjmsAdminExceptionpublic TibjmsAdminException(java.lang.String msg, java.lang.Exception e)Create a new TibjmsAdminException with given error message and root exception.- Parameters:
- msg- The error message for the exception.
- e- The root cause of the exception.
 
 
- 
 - 
Method Detail- 
printStackTracepublic void printStackTrace() Prints stack trace of this exception and of the internal exception if it is set.- Overrides:
- printStackTracein class- java.lang.Throwable
 
 - 
printStackTracepublic void printStackTrace(java.io.PrintWriter s) Prints stack trace of this exception and of the internal exception if it is set.- Overrides:
- printStackTracein class- java.lang.Throwable
- Parameters:
- s- the PrintWriter object to print to.
 
 - 
printStackTracepublic void printStackTrace(java.io.PrintStream s) Prints stack trace of this exception and of the internal exception if it is set.- Overrides:
- printStackTracein class- java.lang.Throwable
- Parameters:
- s- the PrintStream object to print to.
 
 - 
toStringpublic java.lang.String toString() Generate a string representation of this TibjmsAdminException.- Overrides:
- toStringin class- java.lang.Throwable
- Returns:
- a string representation of this TibjmsAdminException.
 
 
- 
 
-