Files
elink-test-master/src/main/java/com/eactive/testmaster/common/exception/ServerNotFoundException.java
T
2024-01-23 11:24:09 +09:00

9 lines
200 B
Java

package com.eactive.testmaster.common.exception;
public class ServerNotFoundException extends RuntimeException {
public ServerNotFoundException(String message) {
super(message);
}
}