01: package org.andromda.core;
02:
03: /**
04: * The exception thrown when model validation fails.
05: *
06: * @author Chad Brandon
07: */
08: public class ModelValidationException extends RuntimeException {
09: /**
10: * Constructs an instance of ModelValidationException.
11: *
12: * @param message the validation message indicating the error.
13: */
14: public ModelValidationException(final String message) {
15: super(message);
16: }
17: }
|