Skip to content
UnauthorizedException.java 335 B
Newer Older
Sonia Zorba's avatar
Sonia Zorba committed
package it.inaf.ia2.gms.exception;

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

@ResponseStatus(value = HttpStatus.UNAUTHORIZED)
Sonia Zorba's avatar
Sonia Zorba committed
public class UnauthorizedException extends GmsException {
Sonia Zorba's avatar
Sonia Zorba committed

    public UnauthorizedException(String message) {
        super(message);
    }
}