package de.bisquallisoft.twitch; /** * Created by squall on 10.08.2014. */ public class UnauthorizedException extends RuntimeException { public UnauthorizedException() { } public UnauthorizedException(String message) { super(message); } public UnauthorizedException(String message, Throwable cause) { super(message, cause); } public UnauthorizedException(Throwable cause) { super(cause); } public UnauthorizedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }