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

com.yomahub.liteflow.parser.apollo.exception.ApolloException Maven / Gradle / Ivy

There is a newer version: 2.12.4.2
Show newest version
package com.yomahub.liteflow.parser.apollo.exception;

/**
 * @author zhanghua
 * @since 2.9.5
 */
public class ApolloException extends RuntimeException {

	private String message;

	public ApolloException(String message) {
		super();
		this.message = message;
	}

	public ApolloException(Throwable cause) {
		super(cause);
		this.message = cause.getMessage();
	}

	@Override
	public String getMessage() {
		return message;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy