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

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

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

import com.redhat.ceylon.compiler.java.metadata.Ceylon;
import com.redhat.ceylon.compiler.java.metadata.Class;

/**
 * 

Thrown when something is invoked which * we statically know cannot be invoked. Such as an * abstract constructor which was never delegated-to.

* * @author tom */ @Ceylon(major = 8) @Class public class UninvokableError extends Error { private static final long serialVersionUID = -8438042507968776L; public UninvokableError() { super(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy