Class SkipExecution

All Implemented Interfaces:
Serializable

public class SkipExecution extends RuntimeException
Class to implement SkipExecution
See Also:
  • Constructor Details

    • SkipExecution

      public SkipExecution()
      Constructor
    • SkipExecution

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

    • ifTrue

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

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

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

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

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

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

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

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