connectionpool
Class ConnectionPoolException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--connectionpool.ConnectionPoolException
- public class ConnectionPoolException
- extends java.lang.Exception
This class extends the Exception class and encapsulates any other exception.
- See Also:
- Serialized Form
|
Method Summary |
java.lang.String |
getMessageId()
This method returns the message id. |
void |
printStackTrace()
This method prints the stack trace to System.err. |
void |
printStackTrace(java.io.PrintStream ps)
This method prints the stack trace to ps. |
void |
printStackTrace(java.io.PrintWriter pw)
This method prints the stack trace to pw. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace,
getLocalizedMessage,
getMessage,
toString |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
printStackTrace
public void printStackTrace()
- This method prints the stack trace to System.err. It prints the
entire stackTrace of all the previous exceptions that it has
encapsulated.
- Overrides:
- printStackTrace in class java.lang.Throwable
printStackTrace
public void printStackTrace(java.io.PrintStream ps)
- This method prints the stack trace to
ps. It prints the
entire stackTrace of all the previous exceptions that it has
encapsulated.
- Parameters:
ps - PrintStream into which the stack trace will be written.- Overrides:
- printStackTrace in class java.lang.Throwable
getMessageId
public java.lang.String getMessageId()
- This method returns the message id.
printStackTrace
public void printStackTrace(java.io.PrintWriter pw)
- This method prints the stack trace to
pw. It prints the
entire stackTrace of all the previous exceptions that it has
encapsulated.
- Parameters:
pw - PrintWriter into which the stack trace will be written.- Overrides:
- printStackTrace in class java.lang.Throwable