kieker.webgui.common.exception
Class AbstractKiekerWebGUIException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by kieker.webgui.common.exception.AbstractKiekerWebGUIException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AnalysisDisplayReloadException, AnalysisInitializationException, DataAccessException, GraphLayoutException, InvalidAnalysisStateException, NewerProjectException, ProjectAlreadyExistingException, ProjectLoadException, ProjectNotExistingException, ProjectStillRunningException, ReflectionException

public abstract class AbstractKiekerWebGUIException
extends Exception

This is the abstract base for all other exceptions used in this web application. The exceptions are checked exceptions and must therefore be explicitly thrown and caught.

Author:
Nils Christian Ehmke
See Also:
Serialized Form

Constructor Summary
AbstractKiekerWebGUIException()
          Creates a new instance of this exception without detail message.
AbstractKiekerWebGUIException(String msg)
          Creates a new instance of this class using the given detail message.
AbstractKiekerWebGUIException(String msg, Throwable cause)
          Creates a new instance of this class using the given detail message and cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AbstractKiekerWebGUIException

public AbstractKiekerWebGUIException()
Creates a new instance of this exception without detail message. The cause is not initialized, but can later be initialized using Throwable.initCause(java.lang.Throwable).


AbstractKiekerWebGUIException

public AbstractKiekerWebGUIException(String msg)
Creates a new instance of this class using the given detail message. The cause is not initialized, but can later be initialized using Throwable.initCause(java.lang.Throwable).

Parameters:
msg - The detail message of the exception.

AbstractKiekerWebGUIException

public AbstractKiekerWebGUIException(String msg,
                                     Throwable cause)
Creates a new instance of this class using the given detail message and cause.

Parameters:
msg - The detail message of the exception.
cause - The cause for the exception.


Copyright © 2015. All rights reserved.