Class AppfigurateLibraryException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nz.co.electricbolt.appfiguratelibrary.AppfigurateLibraryException
All Implemented Interfaces:
Serializable

public class AppfigurateLibraryException extends RuntimeException
Exception thrown by Appfigurate library when:
  • the app is initialized, generally due to a programming error,
  • invalid configuration is attempted to be applied to the app,
  • an action is attempted to be executed on the app causing invalid configuration.
See Also:
  • Constructor Details

    • AppfigurateLibraryException

      public AppfigurateLibraryException(@NonNull String message)
      Constructs a new AppfigurateLibraryException with the specified detail message.
      Parameters:
      message - message text.
    • AppfigurateLibraryException

      public AppfigurateLibraryException(@NonNull String message, @NonNull Exception exception)
      Constructs a new AppfigurateLibraryException with the specified detail message and exception.
      Parameters:
      message - message text.
      exception - exception that caused this AppfigurateLibraryException.