All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ace.core.errors.IllegalPlayerDataException Maven / Gradle / Ivy

The newest version!
package ace.core.errors;

import org.springframework.core.NestedCheckedException;

/**
 * Custom NestedCheckedException
 */
public class IllegalPlayerDataException extends NestedCheckedException {
    /**
     * @param msg error
     */
    public IllegalPlayerDataException(String msg) {
        super(msg);
    }

    /**
     * @param msg error
     * @param cause thrown cause
     */
    public IllegalPlayerDataException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy