All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.caelum.vraptor.panettone.CompilationIOException Maven / Gradle / Ivy

There is a newer version: 4.0.0-RC9
Show newest version
package br.com.caelum.vraptor.panettone;

import java.io.IOException;
import java.util.List;

public class CompilationIOException extends RuntimeException {

	private static final long serialVersionUID = -290589791882262605L;

	public CompilationIOException(String message, Exception e) {
		super(message, e);
	}

	public CompilationIOException(String msg) {
		super(msg);
	}

	public CompilationIOException(IOException e) {
		super(e);
	}

	public CompilationIOException(List exceptions) {
		super(exceptions.get(0));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy