ReminderNotFoundException Class

  • java.lang.Object
    • RuntimeException

public class ReminderNotFoundException extends FabricException

Exception thrown by actor runtime when a specified reminder is not found for the actor.

Constructor Summary

Constructor Description
ReminderNotFoundException()

Initializes a new instance of the ReminderNotFoundException class.

ReminderNotFoundException(String message)

Initializes a new instance of the ReminderNotFoundException class with a specified error message.

ReminderNotFoundException(String message, Throwable cause)

Initializes a new instance of the ReminderNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ReminderNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

Initializes a new instance of the ReminderNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ReminderNotFoundException(Throwable cause)

Inherited Members

Constructor Details

ReminderNotFoundException

public ReminderNotFoundException()

Initializes a new instance of the ReminderNotFoundException class.

ReminderNotFoundException

public ReminderNotFoundException(String message)

Initializes a new instance of the ReminderNotFoundException class with a specified error message.

Parameters:

message - input message

ReminderNotFoundException

public ReminderNotFoundException(String message, Throwable cause)

Initializes a new instance of the ReminderNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Parameters:

message - The error message that explains the reason for the exception.
cause - The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

ReminderNotFoundException

protected ReminderNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

Initializes a new instance of the ReminderNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Parameters:

message - The error message that explains the reason for the exception.
cause - The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
enableSuppression - If true, enable suppression.
writableStackTrace - If true, enable stack trace.

ReminderNotFoundException

public ReminderNotFoundException(Throwable cause)

Parameters:

cause

Applies to