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

com.redhat.ceylon.compiler.java.language.UnresolvedCompilationError Maven / Gradle / Ivy

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

/**
 * Error used by the compiler when an expression or statement 
 * (that's not a declaration) has typechecker errors.
 */
public class UnresolvedCompilationError extends Error {

    private static final long serialVersionUID = -6034493434470699238L;

    public UnresolvedCompilationError() {
        super();
    }

    public UnresolvedCompilationError(String message, Throwable cause) {
        super(message, cause);
    }

    public UnresolvedCompilationError(String message) {
        super(message);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy