- Started with Web Protocol

This commit is contained in:
Finn
2025-09-25 23:40:24 +02:00
parent f30a2a1046
commit 1dbfad7947
30 changed files with 1389 additions and 141 deletions

View File

@@ -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);
}
}