blob: 20a931693c2502ac381e8b92ad73953b16ee70b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.common;
/**
* @author pkobiakov
*/
public class MdaException extends Exception {
private static final long serialVersionUID = 4003559255399844949L;
public MdaException(String message) {
super(message);
}
public MdaException(String message, Throwable cause) {
super(message, cause);
}
public MdaException(Throwable cause) {
super(cause);
}
}