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

com.mindsnacks.zinc.exceptions.ZincException Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version
package com.mindsnacks.zinc.exceptions;

/**
 * User: NachoSoto
 * Date: 9/3/13
 */
public class ZincException extends Exception {
    public ZincException(final String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy