Class CombinedTypeSolver.ExceptionHandlers

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.util.function.Predicate<java.lang.Exception> IGNORE_ALL
      Ignores all exceptions
      static java.util.function.Predicate<java.lang.Exception> IGNORE_NONE
      Doesn't ignore any exceptions (default)
      static java.util.function.Predicate<java.lang.Exception> IGNORE_UNSOLVED_SYMBOL
      Ignores any exception that is assignable from UnsolvedSymbolException.
      static java.util.function.Predicate<java.lang.Exception> IGNORE_UNSUPPORTED_AND_UNSOLVED
      Ignores any exception that is assignable from either UnsolvedSymbolException or UnsupportedOperationException.
      static java.util.function.Predicate<java.lang.Exception> IGNORE_UNSUPPORTED_OPERATION
      Ignores any exception that is assignable from UnsupportedOperationException.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.util.function.Predicate<java.lang.Exception> getTypeBasedBlacklist​(java.lang.Class<? extends java.lang.Exception>... blacklist)  
      static java.util.function.Predicate<java.lang.Exception> getTypeBasedWhitelist​(java.lang.Class<? extends java.lang.Exception>... whitelist)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • IGNORE_NONE

        public static final java.util.function.Predicate<java.lang.Exception> IGNORE_NONE
        Doesn't ignore any exceptions (default)
      • IGNORE_ALL

        public static final java.util.function.Predicate<java.lang.Exception> IGNORE_ALL
        Ignores all exceptions
      • IGNORE_UNSUPPORTED_OPERATION

        public static final java.util.function.Predicate<java.lang.Exception> IGNORE_UNSUPPORTED_OPERATION
        Ignores any exception that is assignable from UnsupportedOperationException.
        See Also:
        getTypeBasedWhitelist(Class...)
    • Constructor Detail

      • ExceptionHandlers

        public ExceptionHandlers()