| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.roller.RollerException
All known Subclasses: org.apache.roller.RollerPermissionsException, org.apache.roller.ui.rendering.RenderingException, org.apache.roller.business.FileIOException, org.apache.roller.business.ThemeNotFoundException, org.apache.roller.ui.rendering.util.InvalidRequestException, org.apache.roller.business.FilePathException, org.apache.roller.business.FileNotFoundException,
RollerException | public class RollerException extends Exception (Code) | | Base Roller exception class.
|
RollerException | public RollerException()(Code) | | Construct emtpy exception object.
|
RollerException | public RollerException(String s)(Code) | | Construct RollerException with message string.
Parameters: s - Error message string. |
RollerException | public RollerException(String s, Throwable t)(Code) | | Construct RollerException, wrapping existing throwable.
Parameters: s - Error message Parameters: t - Existing connection to wrap. |
RollerException | public RollerException(Throwable t)(Code) | | Construct RollerException, wrapping existing throwable.
Parameters: t - Existing exception to be wrapped. |
getRootCause | public Throwable getRootCause()(Code) | | Get root cause object, or null if none.
Root cause or null if none. |
getRootCauseMessage | public String getRootCauseMessage()(Code) | | Get root cause message.
Root cause message. |
printStackTrace | public void printStackTrace(PrintStream s)(Code) | | Print stack trace for exception and for root cause exception if htere is one.
Parameters: s - Stream to print to. |
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Print stack trace for exception and for root cause exception if htere is one.
Parameters: s - Writer to write to. |
|
|