blob: 79bd29c6b2933776d33ae22dc3263017025819f9 [file] [log] [blame]
package org.eclipse.stem.graphsynchronizer;
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* Thrown when a problem with the underlying messenger is detected. The cause
* of the exception is implementation dependent.
*/
public class MessengerException extends Exception {
/**
*
*/
private static final long serialVersionUID = 7123687888747981757L;
public MessengerException(String msg) {
super(msg);
}
public MessengerException(String msg, Exception e) {
super(msg, e);
}
}