Class NoMatchSecurityFactoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.flink.runtime.security.NoMatchSecurityFactoryException
- All Implemented Interfaces:
Serializable
Exception for not finding suitable security factories.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoMatchSecurityFactoryException(String message, String factoryClassCanonicalName, List<?> matchingFactories) Exception for not finding suitable security factories.NoMatchSecurityFactoryException(String message, String factoryClassCanonicalName, List<?> matchingFactories, Throwable cause) Exception for not finding suitable security factories. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoMatchSecurityFactoryException
public NoMatchSecurityFactoryException(String message, String factoryClassCanonicalName, List<?> matchingFactories, Throwable cause) Exception for not finding suitable security factories.- Parameters:
message- message that indicates the current matching stepfactoryClassCanonicalName- required factory classmatchingFactories- all found factoriescause- the cause
-
NoMatchSecurityFactoryException
public NoMatchSecurityFactoryException(String message, String factoryClassCanonicalName, List<?> matchingFactories) Exception for not finding suitable security factories.- Parameters:
message- message that indicates the current matching stepfactoryClassCanonicalName- required factory classmatchingFactories- all found factories
-