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

com.reprezen.genflow.api.GenerationException Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright © 2013, 2016 Modelsolv, Inc.
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains the property
 * of ModelSolv, Inc. See the file license.html in the root directory of
 * this project for further information.
 *******************************************************************************/
package com.reprezen.genflow.api;

public class GenerationException extends Exception {

	private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy