sky-take-out/sky-common/src/main/java/com/sky/common/exception/DeletionNotAllowedException...

19 lines
484 B
Java
Raw Normal View History

2024-03-11 20:41:39 +08:00
package com.sky.common.exception;
/**
* 不允许删除异常
*/
public class DeletionNotAllowedException extends BaseException{
/**
* Constructs a new runtime exception with {@code null} as its
* detail message. The cause is not initialized, and may subsequently be
* initialized by a call to {@link #initCause}.
*/
public DeletionNotAllowedException() {
}
public DeletionNotAllowedException(String message) {
super(message);
}
}