mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
15 lines
343 B
Java
15 lines
343 B
Java
package mp.code.exceptions;
|
|
|
|
/**
|
|
* An exception that occurred from the underlying tonic layer.
|
|
*/
|
|
public abstract class ConnectionTransportException extends Exception {
|
|
|
|
/**
|
|
* Creates a new exception with the given message.
|
|
* @param message the message
|
|
*/
|
|
public ConnectionTransportException(String message) {
|
|
super(message);
|
|
}
|
|
}
|