Newer
Older
KeeperJerry_Launcher / LaunchServer / source / command / CommandException.java
@KeeperJerry KeeperJerry on 27 Jun 2020 467 bytes Рефактор кода
package launchserver.command;

import launcher.LauncherAPI;

public final class CommandException extends Exception
{
    private static final long serialVersionUID = -6588814993972117772L;

    @LauncherAPI
    public CommandException(String message)
    {
        super(message);
    }

    @LauncherAPI
    public CommandException(Throwable exc)
    {
        super(exc);
    }

    @Override
    public String toString()
    {
        return getMessage();
    }
}