io.firebus.exceptions.FunctionErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
package io.firebus.exceptions;
public class FunctionErrorException extends Exception
{
private static final long serialVersionUID = 1L;
public FunctionErrorException(String m)
{
super(m);
}
public FunctionErrorException(String m, Throwable t)
{
super(m, t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy