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

com.codingapi.springboot.framework.exception.LocaleMessageException Maven / Gradle / Ivy

There is a newer version: 3.2.6
Show newest version
package com.codingapi.springboot.framework.exception;

import lombok.Getter;

public class LocaleMessageException extends RuntimeException {

    @Getter
    private final String errCode;

    @Getter
    private final String errMessage;


    public LocaleMessageException(String errCode, String errMessage, Throwable cause) {
        super(errMessage, cause);
        this.errCode = errCode;
        this.errMessage = errMessage;
    }

    public LocaleMessageException(String errCode, Throwable cause) {
        super(MessageContext.getInstance().getErrorMsg(errCode), cause);
        this.errCode = errCode;
        this.errMessage = getMessage();
    }

    public LocaleMessageException(String errCode, String errMessage) {
        super(errMessage);
        this.errCode = errCode;
        this.errMessage = errMessage;
    }

    public LocaleMessageException(String errCode) {
        super(MessageContext.getInstance().getErrorMsg(errCode));
        this.errCode = errCode;
        this.errMessage = getMessage();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy