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

com.dream.exceptions.AuthorizationException Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.dream.exceptions;

import com.dream.utils.ErrorCode;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@Data
@ResponseStatus(HttpStatus.UNAUTHORIZED)
public class AuthorizationException extends RuntimeException {

    private ErrorCode errorCode;

    public AuthorizationException(ErrorCode errorCode, String message) {
        super(message);
        this.errorCode = errorCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy