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

com.dream.exceptions.OperationNotPermittedException 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.ALREADY_REPORTED)
public class OperationNotPermittedException extends Exception {

    private static final long serialVersionUID = 2967461196741036187L;
	private ErrorCode errorCode;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy