Example usage for java.lang AbstractMethodError AbstractMethodError

List of usage examples for java.lang AbstractMethodError AbstractMethodError

Introduction

In this page you can find the example usage for java.lang AbstractMethodError AbstractMethodError.

Prototype

public AbstractMethodError() 

Source Link

Document

Constructs an AbstractMethodError with no detail message.

Usage

From source file:org.apache.openjpa.kernel.exps.InMemoryExpressionFactory.java

public Value newFunction(String functionName, Class<?> resultType, Value... args) {
    throw new AbstractMethodError();
}