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

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

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

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

public class ProcessException extends BaseException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy