blob: 17b03779d17b18869140217a71b610f19e87f6f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012-2014 SAP SE.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SAP SE - initial API and implementation and/or initial documentation
*
*******************************************************************************/
package org.eclipse.ogee.model.api;
public class VocabularyException extends ModelAPIException {
private static final long serialVersionUID = 2345952017591492310L;
public VocabularyException() {
super();
}
public VocabularyException(String message) {
super(message);
}
public VocabularyException(String message, Throwable error) {
super(message, error);
}
}