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