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

com.redhat.ceylon.compiler.EnvironmentException Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.compiler;

import com.redhat.ceylon.common.tool.ToolError;

/**
 * Something unexpected in the environment prevented the compilation
 * from succeeding. This is a fatal error but not a bug. 
 */
@SuppressWarnings("serial")
public class EnvironmentException extends ToolError {

    public EnvironmentException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy