Class FailedReportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.testproject.sdk.internal.exceptions.FailedReportException
-
- All Implemented Interfaces:
java.io.Serializable
public class FailedReportException extends java.lang.Exception
This exception is thrown when SDK fails to send a report to the agent.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FailedReportException()
Creates a new instance of the class with a default message.FailedReportException(java.lang.String message)
Creates a new instance of the class with a provided message.FailedReportException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance of the class with a provided message and cause.
-
-
-
Constructor Detail
-
FailedReportException
public FailedReportException()
Creates a new instance of the class with a default message.
-
FailedReportException
public FailedReportException(java.lang.String message)
Creates a new instance of the class with a provided message.- Parameters:
message
- message to be set
-
FailedReportException
public FailedReportException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance of the class with a provided message and cause.- Parameters:
message
- message to be setcause
- another exception that caused this one
-
-