Class NoMatchSecurityFactoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.flink.runtime.security.NoMatchSecurityFactoryException
-
- All Implemented Interfaces:
Serializable
public class NoMatchSecurityFactoryException extends RuntimeException
Exception for not finding suitable security factories.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoMatchSecurityFactoryException(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 Detail
-
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
-
-