LoadingException

public class LoadingException extends RuntimeException

Represents an error while loading a specific plugin.

Author

jwienke

Constructors

LoadingException

public LoadingException()

Constructs an exception with empty message and cause.

LoadingException

public LoadingException(String message)

Constructs an exception with an explanatory message.

Parameters

message – the message

LoadingException

public LoadingException(Throwable cause)

Constructs an exception with causing Throwable.

Parameters

cause – causing exception

LoadingException

public LoadingException(String message, Throwable cause)

Constructs an exception with explanatory message and causing exception.

Parameters
  • message – the message

  • cause – causing exception