MappingsException.java
package org.andromda.core.mapping;
/**
* Any error occurring during processing of Mappings should through this exception.
*/
public class MappingsException
extends RuntimeException
{
private static final long serialVersionUID = 34L;
/**
* Constructs an instance of MappingsException.
*
* @param parent the parent exception
*/
public MappingsException(Throwable parent)
{
super(parent);
}
/**
* Constructs an instance of MappingsException.
*
* @param message the exception message
*/
public MappingsException(String message)
{
super(message);
}
/**
* Constructs an instance of MappingsException.
*
* @param message the exception message
* @param parent the parent exception
*/
public MappingsException(
String message,
Throwable parent)
{
super(message, parent);
}
}