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

com.wangshanhai.power.exceptions.ShanHaiBizException 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 ShanHaiBizException extends  ShanHaiPowerException{
    private String code="30001";
    private String message;
    public ShanHaiBizException(String message) {
        this.message = message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy