Constructors Summary |
---|
public MonitorTaskException()Creates new MonitorTaskException without detail message.
|
public MonitorTaskException(String msg)Constructs an MonitorTaskException with the specified detail message.
super(msg);
|
public MonitorTaskException(Throwable cause)Constructs a new MonitorTaskException exception with the specified
cause
super(cause);
|
public MonitorTaskException(String msg, Throwable cause)Constructs a new MonitorTaskException exception with the specified
detailed message and cause
super(msg, cause);
|