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

com.github.iintelligas.exception.InvalidDataException Maven / Gradle / Ivy

The newest version!
package com.github.iintelligas.exception;

public class InvalidDataException extends RuntimeException
{

    private static final long serialVersionUID = -8405723008805644356L;

    public InvalidDataException(String msg, Throwable t)
    {
        super(msg, t);
    }

    public InvalidDataException(String msg)
    {
        super(msg);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy