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

com.kennycason.kumo.exception.KumoException Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package com.kennycason.kumo.exception;

/**
 * Created by kenny on 2/20/16.
 */
public class KumoException extends RuntimeException {

    public KumoException(final String message) {
        super(message);
    }

    public KumoException(final Throwable cause) {
        super(cause);
    }

    public KumoException(final String message, final Throwable cause) {
        super(message, cause);
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy