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

com.redhat.ceylon.compiler.SystemErrorException 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.FatalToolError;

/**
 * Exception type to indicate a system error with the compiler.
 * System errors are often (but not always) due to bugs in the compiler.
 */
@SuppressWarnings("serial")
public class SystemErrorException extends FatalToolError {

    SystemErrorException(Throwable cause) {
        super(cause);
    }
    
    public String getErrorMessage() {
        return CeylonCompileMessages.msgSystemError();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy