DuplicateMessageException Class

  • java.lang.Object
    • RuntimeException

public class DuplicateMessageException extends FabricException

Exception indicates that Actor recieved Duplicate Message

Constructor Summary

Constructor Description
DuplicateMessageException()

Initializes a new instance of the DuplicateMessageException class.

DuplicateMessageException(String message)

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

DuplicateMessageException(String message, Throwable cause)

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

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

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

DuplicateMessageException(Throwable cause)

Inherited Members

Constructor Details

DuplicateMessageException

public DuplicateMessageException()

Initializes a new instance of the DuplicateMessageException class.

DuplicateMessageException

public DuplicateMessageException(String message)

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

Parameters:

message - input message

DuplicateMessageException

public DuplicateMessageException(String message, Throwable cause)

Initializes a new instance of the DuplicateMessageException 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.

DuplicateMessageException

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

Initializes a new instance of the DuplicateMessageException 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.

DuplicateMessageException

public DuplicateMessageException(Throwable cause)

Parameters:

cause

Applies to