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

com.espertech.esper.epl.core.EngineNoSuchMethodException Maven / Gradle / Ivy

Go to download

Complex event processing and event series analysis component

There is a newer version: 7.1.0
Show newest version
package com.espertech.esper.epl.core;

import java.lang.reflect.Method;

/**
 * Exception for resolution of a method failed.
 */
public class EngineNoSuchMethodException extends Exception
{
    private transient Method nearestMissMethod;
    private static final long serialVersionUID = 9217764859358996087L;

    /**
     * Ctor.
     * @param message message
     * @param nearestMissMethod best-match method
     */
    public EngineNoSuchMethodException(String message, Method nearestMissMethod)
    {
        super(message);
        this.nearestMissMethod = nearestMissMethod;
    }

    /**
     * Returns the best-match method.
     * @return method
     */
    public Method getNearestMissMethod()
    {
        return nearestMissMethod;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy