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

uk.co.jemos.protomak.engine.exceptions.ProtomakEngineSerialisationError Maven / Gradle / Ivy

Go to download

This is PROTOMAK engine to convert integration technology files such as XML and Jonas into .proto files

The newest version!
/**
 * 
 */
package uk.co.jemos.protomak.engine.exceptions;

/**
 * Error which occurs during serialisation of the proto domain model.
 * 
 * @author mtedone
 * 
 */
public class ProtomakEngineSerialisationError extends RuntimeException {

	//------------------->> Constants

	private static final long serialVersionUID = 1L;

	//------------------->> Constructors

	/**
	 * It creates an exception with the error message
	 * 
	 * @param errorMessage
	 *            The error message
	 */
	public ProtomakEngineSerialisationError(String errorMessage) {
		super(errorMessage);
	}

	/**
	 * It creates an exception with error message and error cause
	 * 
	 * @param errorMessage
	 *            The error message
	 * @param cause
	 *            The error cause
	 */
	public ProtomakEngineSerialisationError(String errorMessage, Throwable cause) {
		super(errorMessage, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy