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

com.fnproject.springframework.function.exception.SpringCloudFunctionNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.0.196
Show newest version
package com.fnproject.springframework.function.exception;

import com.fnproject.fn.api.exception.FunctionLoadException;

/**
 * Spring Cloud Function integration attempts to find the right Bean to use
 * as the function entrypoint. This exception is thrown when that fails.
 */
public class SpringCloudFunctionNotFoundException extends FunctionLoadException {

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

    public SpringCloudFunctionNotFoundException(String msg) {
        super(msg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy