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

com.legstar.base.ConversionException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.legstar.base;

/**
 * Some anomaly at runtime when trying to convert to or from mainframe data.
 *
 */
public class ConversionException extends RuntimeException {

    private static final long serialVersionUID = 7300869847784507910L;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy