Class SkipExecution

All Implemented Interfaces:
Serializable

@Deprecated public class SkipExecution extends RuntimeException
Deprecated.
Class to implement SkipExecution

Deprecated - @see Execution

See Also:
  • Constructor Details

    • SkipExecution

      public SkipExecution()
      Deprecated.
      Constructor
    • SkipExecution

      public SkipExecution(String message)
      Deprecated.
      Constructor
      Parameters:
      message - message
  • Method Details

    • ifTrue

      public static void ifTrue(boolean condition)
      Deprecated.
      Throws a SkipException if true
      Parameters:
      condition - condition
      Throws:
      SkipExecution - SkipExecution
    • ifTrue

      public static void ifTrue(boolean condition, String message)
      Deprecated.
      Throws a SkipException if true
      Parameters:
      condition - condition
      message - message
      Throws:
      SkipExecution - SkipExecution
    • ifTrue

      public static void ifTrue(BooleanSupplier supplier) throws SkipExecution
      Deprecated.
      Throws a SkipException if true
      Parameters:
      supplier - supplier
      Throws:
      SkipExecution - SkipExecution
    • ifTrue

      public static void ifTrue(BooleanSupplier supplier, String message) throws SkipExecution
      Deprecated.
      Throws a SkipException if true
      Parameters:
      supplier - supplier
      message - message
      Throws:
      SkipExecution - SkipExecution
    • ifFalse

      public static void ifFalse(boolean condition) throws SkipExecution
      Deprecated.
      Throws a SkipException if false
      Parameters:
      condition - condition
      Throws:
      SkipExecution - SkipExecution
    • ifFalse

      public static void ifFalse(boolean condition, String message) throws SkipExecution
      Deprecated.
      Throws a SkipException if false
      Parameters:
      condition - condition
      message - message
      Throws:
      SkipExecution - SkipExecution
    • ifFalse

      public static void ifFalse(BooleanSupplier supplier) throws SkipExecution
      Deprecated.
      Throws a SkipException if false
      Parameters:
      supplier - supplier
      Throws:
      SkipExecution - SkipExecution
    • ifFalse

      public static void ifFalse(BooleanSupplier supplier, String message) throws SkipExecution
      Deprecated.
      Throws a SkipException if false
      Parameters:
      supplier - supplier
      message - message
      Throws:
      SkipExecution - SkipExecution