- Started with Web Protocol
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package org.openautonomousconnection.protocol.exceptions;
|
||||
|
||||
public class UnsupportedProtocolException extends RuntimeException {
|
||||
|
||||
public UnsupportedProtocolException() {
|
||||
this("Selected protocol is not supported!");
|
||||
}
|
||||
|
||||
public UnsupportedProtocolException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public UnsupportedProtocolException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public UnsupportedProtocolException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public UnsupportedProtocolException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user