blob: 7610b6bd926d87faf71fae2d6490599d10215491 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2018 Willink Transformations 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.ecore.delegate;
/**
* @since 3.0
*/
public class OCLDelegateException extends org.eclipse.ocl.common.internal.delegate.OCLDelegateException {
/**
*
*/
private static final long serialVersionUID = 1L;
public OCLDelegateException(String message) {
super(message, null);
}
public OCLDelegateException(String message, Exception cause) {
super(message, cause);
}
}