codemp/dist/java/src/mp/code/exceptions/ConnectionTransportException.java

16 lines
343 B
Java
Raw Normal View History

2024-09-05 02:45:33 +02:00
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);
2024-09-05 02:45:33 +02:00
}
}