org.eclipse.xtext.util.RuntimeIOException Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) 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
*******************************************************************************/
package org.eclipse.xtext.util;
/**
* The purpose of this exception is to wrap checked exceptions that occurred while accessing the file system, i.e.
* {@link java.io.IOException}.
*
* @author Moritz Eysholdt - Initial contribution and API
* @since 2.4
*/
public class RuntimeIOException extends RuntimeException {
private static final long serialVersionUID = -7477488058010839013L;
public RuntimeIOException() {
}
public RuntimeIOException(String message) {
super(message);
}
public RuntimeIOException(String message, Throwable cause) {
super(message, cause);
}
public RuntimeIOException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy