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

com.xlrit.gears.base.exception.DataException Maven / Gradle / Ivy

There is a newer version: 1.17.6
Show newest version
package com.xlrit.gears.base.exception;

import com.xlrit.gears.base.exception.BaseException;

public class DataException extends BaseException {
	public DataException(String message) {
		super(message);
	}

	public DataException(Throwable e) {
		super(e);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy