adorsys/datasafe

View on GitHub
datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/exceptions/UnauthorizedException.java

Summary

Maintainability
A
0 mins
Test Coverage
package de.adorsys.datasafe.rest.impl.exceptions;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.FORBIDDEN)
public class UnauthorizedException extends RuntimeException {

    public UnauthorizedException(String message, Throwable cause) {
        super(message, cause);
    }
}