localhost-back/src/main/java/io/company/localhost/common/exception/RestApiException.java
2024-12-09 12:45:15 +09:00

13 lines
300 B
Java

package io.company.localhost.common.exception;
import io.company.localhost.common.exception.code.ErrorCode;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
public class RestApiException extends RuntimeException {
private final ErrorCode errorCode;
}