Class Preconditions

java.lang.Object
gc.garcol.libcore.Preconditions

public class Preconditions extends Object
Utility class for checking preconditions. Provides methods to validate arguments and state conditions. Throws appropriate exceptions if conditions are not met.
Since:
2024
  • Method Details

    • checkArgument

      public static void checkArgument(boolean success, String message)
      Checks if the provided argument condition is true. Throws an IllegalArgumentException with the specified message if the condition is false.
      Parameters:
      success - the condition to check
      message - the exception message to use if the check fails
      Throws:
      IllegalArgumentException - if the condition is false