blob: 7613b6b7ac461632d43b795bafd18d130184b35f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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:
* Norimasa HAYASHIDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.internal.ui.editors.ooo.util;
public class ODFException extends Exception {
private static final long serialVersionUID = -6677727822167816263L;
public ODFException(){
super();
}
public ODFException(String msg){
super(msg);
}
}