Class GraphFormattingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
kieker.tools.trace.analysis.filter.visualization.exception.GraphFormattingException
- All Implemented Interfaces:
java.io.Serializable
public class GraphFormattingException
extends java.lang.RuntimeException
Generic exception which denotes that an error has occured during graph formatting.
- Since:
- 1.6
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description GraphFormattingException(java.lang.String message)Creates a new exception with the given message.GraphFormattingException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with a given message and a given cause.GraphFormattingException(java.lang.Throwable cause)Creates a new exception with the given cause. -
Method Summary
-
Constructor Details
-
GraphFormattingException
public GraphFormattingException(java.lang.String message)Creates a new exception with the given message.- Parameters:
message- The message to use
-
GraphFormattingException
public GraphFormattingException(java.lang.Throwable cause)Creates a new exception with the given cause.- Parameters:
cause- The cause of this exception
-
GraphFormattingException
public GraphFormattingException(java.lang.String message, java.lang.Throwable cause)Creates a new exception with a given message and a given cause.- Parameters:
message- The message to usecause- The cause of this exception
-