/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.core.designer; import org.teiid.core.designer.TeiidDesignerRuntimeException; /** * UserCancelledException * * @since 8.0 */ public class UserCancelledException extends TeiidDesignerRuntimeException { /** */ private static final long serialVersionUID = 1L; private static final String msg = CoreModelerPlugin.Util.getString("UserCancelledException.User_cancelled_operation_msg"); //$NON-NLS-1$ /** * Construct an instance of UserCancelledException. */ public UserCancelledException() { super(msg); } }