Package kieker.common.exception
Class MonitoringRecordException
java.lang.Object
java.lang.Throwable
java.lang.Exception
kieker.common.exception.MonitoringRecordException
- All Implemented Interfaces:
java.io.Serializable
public class MonitoringRecordException
extends java.lang.Exception
This exception can be used to show that something in context with a monitoring record failed.
- Since:
- 1.0
- Author:
- Jan Waller, Reiner Jung - add format string support
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description MonitoringRecordException(java.lang.String message)
Creates a new instance of this exception using the given parameters.MonitoringRecordException(java.lang.String format, java.lang.Object... arguments)
Creates a new instance of a exception utilizing a format string.MonitoringRecordException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance of this exception using the given parameters. -
Method Summary
-
Constructor Details
-
MonitoringRecordException
public MonitoringRecordException(java.lang.String message)Creates a new instance of this exception using the given parameters.- Parameters:
message
- The message of this exception
-
MonitoringRecordException
public MonitoringRecordException(java.lang.String message, java.lang.Throwable cause)Creates a new instance of this exception using the given parameters.- Parameters:
message
- The message of this exceptioncause
- The cause of this exception
-
MonitoringRecordException
public MonitoringRecordException(java.lang.String format, java.lang.Object... arguments)Creates a new instance of a exception utilizing a format string.- Parameters:
format
- format stringarguments
- arguments used for the format string
-