Class ExceptionFactory<T>

  • All Implemented Interfaces:
    java.io.Serializable, Factory<T>

    public final class ExceptionFactory<T>
    extends java.lang.Object
    implements Factory<T>, java.io.Serializable
    Factory implementation that always throws an exception.
    Since:
    3.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Factory INSTANCE
      Singleton predicate instance
      private static long serialVersionUID
      Serial version UID
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ExceptionFactory()
      Restricted constructor.
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Serial version UID
        See Also:
        Constant Field Values
      • INSTANCE

        public static final Factory INSTANCE
        Singleton predicate instance
    • Constructor Detail

      • ExceptionFactory

        private ExceptionFactory()
        Restricted constructor.
    • Method Detail

      • exceptionFactory

        public static <T> Factory<T> exceptionFactory()
        Factory returning the singleton instance.
        Type Parameters:
        T - the type the factory creates
        Returns:
        the singleton instance
        Since:
        3.1
      • readResolve

        private java.lang.Object readResolve()