13 lines
297 B
Java
13 lines
297 B
Java
package com.yam.app.common;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
public abstract class SystemException extends RuntimeException {
|
|
|
|
public SystemException(String format, Object... args) {
|
|
super(String.format(format, args));
|
|
}
|
|
|
|
public abstract HttpStatus getStatus();
|
|
}
|