001package org.andromda.core;
002
003/**
004 * The exception thrown when model validation fails.
005 *
006 * @author Chad Brandon
007 */
008public class ModelValidationException
009    extends RuntimeException
010{
011    private static final long serialVersionUID = 34L;
012
013    /**
014     * Constructs an instance of ModelValidationException.
015     *
016     * @param message the validation message indicating the error.
017     */
018    public ModelValidationException(final String message)
019    {
020        super(message);
021    }
022}