package exception;

/**
 * Exception thrown when a visibility is not valid for a given element.
 */
public class ExceptionVisibility extends ExceptionUml {

	/**
	 * Generated serial ID
	 */
	private static final long serialVersionUID = -2820203624686193051L;

	/**
	 * Create a new ExceptionVisibility with the given message.
	 * @param message
	 * 		The message of the exception
	 */
	public ExceptionVisibility(String message) {
		super(message);
		// TODO Auto-generated constructor stub
	}

}
