org.bioquery.gui
Class ViewException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--org.bioquery.gui.ViewException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- UnknownFileTypeException
- public abstract class ViewException
- extends java.lang.Exception
Exception thrown whenever a View cannot be found or displayed.
- Author:
- James Brundege
- See Also:
- Serialized Form
|
Constructor Summary |
ViewException()
|
ViewException(java.lang.String message)
Constructor accepts a text message. |
ViewException(java.lang.String message,
java.lang.Throwable cause)
Constructor accepts a text message and an embedded exception. |
ViewException(java.lang.Throwable cause)
Constructor accepts an embedded exception. |
|
Method Summary |
java.lang.Throwable |
getCause()
Returns an embedded exception that may yield greater insight into
why this exception was thrown. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ViewException
public ViewException()
ViewException
public ViewException(java.lang.String message)
- Constructor accepts a text message.
- Parameters:
message - Message that the user will be able to retrieve
ViewException
public ViewException(java.lang.Throwable cause)
- Constructor accepts an embedded exception.
- Parameters:
cause - An embedded exception the user can retrieve.
ViewException
public ViewException(java.lang.String message,
java.lang.Throwable cause)
- Constructor accepts a text message and an embedded exception.
- Parameters:
message - Message that the user will be able to retrievecause - An embedded exception the user can retrieve.
getCause
public java.lang.Throwable getCause()
- Returns an embedded exception that may yield greater insight into
why this exception was thrown.