blob: c20518ffadcc94baf6dae9d4fd89571b0037cf46 [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 RegistryException extends ModelAPIException {
private static final long serialVersionUID = 2563785155544064013L;
public RegistryException() {
super();
}
public RegistryException(String message) {
super(message);
}
public RegistryException(String message, Throwable error){
super(message, error);
}
}