Package org.apache.jmeter.report.core
Class SampleException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.jmeter.report.core.SampleException
- All Implemented Interfaces:
 Serializable
Thrown when some sample processing occurred
- Since:
 - 3.0
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a new sample exception.SampleException(String message) Instantiates a new sample exception with the specified message.SampleException(String message, Throwable cause) Instantiates a new sample exception.SampleException(Throwable cause) Instantiates a new sample exception. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
SampleException
public SampleException()Instantiates a new sample exception. - 
SampleException
Instantiates a new sample exception with the specified message.- Parameters:
 message- the message
 - 
SampleException
Instantiates a new sample exception.- Parameters:
 cause- the cause
 - 
SampleException
Instantiates a new sample exception.- Parameters:
 message- the messagecause- the cause
 
 -