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

kendal.api.exceptions.KendalRuntimeException Maven / Gradle / Ivy

The newest version!
package kendal.api.exceptions;

import kendal.api.KendalHandler;

/**
 * Exception thrown by {@link KendalHandler} in case of any errors. Exception message is then printed out
 * as a compilation error
 */
public class KendalRuntimeException extends RuntimeException {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy