All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wangshanhai.power.exceptions.ShanHaiNotPermissionException Maven / Gradle / Ivy

The newest version!
package com.wangshanhai.power.exceptions;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 细粒度权限异常
 * @author Shmily
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class ShanHaiNotPermissionException extends  ShanHaiPowerException{
    private String code="20001";
    private String message;
    public ShanHaiNotPermissionException(String message) {
        this.message = message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy