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

org.plutext.msgraph.convert.ConversionException Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package org.plutext.msgraph.convert;

@SuppressWarnings("serial")
public class ConversionException extends Exception {
	
    public ConversionException(String msg) {
        super(msg);
}

	public ConversionException(String msg, Exception e) {
	        super(msg, e);
	}
	
	public ConversionException(String msg, Throwable t) {
	        super(msg, t);
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy