blob: c9ddcb80effaf09170926477ff44e41bc6307f82 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.uml.internal;
/**
* @author Yasser Lulu
*/
public final class OCLStatusCodes {
/**
*
*/
private OCLStatusCodes() {
super();
}
public static final int OK = 0;
public static final int ERROR = 1;
public static final int IGNORED_EXCEPTION_WARNING = 10;
public static final int USERMODELSUPPORT_MISSING_NSURI = 20;
public static final int USERMODELSUPPORT_MISSING_CLASS = 21;
public static final int USERMODELSUPPORT_UNRESOLVED_NSURI = 22;
public static final int USERMODELSUPPORT_FACTORY_FAILED = 23;
}