mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-10 09:39:53 +03:00
17 lines
353 B
Java
17 lines
353 B
Java
package pro.gravit.launchserver.auth;
|
|
|
|
import java.io.IOException;
|
|
|
|
public final class AuthException extends IOException {
|
|
private static final long serialVersionUID = -2586107832847245863L;
|
|
|
|
|
|
public AuthException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return getMessage();
|
|
}
|
|
}
|