Class DevelopmentUtilitiesNotEnabledException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DevelopmentUtilitiesNotEnabledException
    extends org.apache.wicket.WicketRuntimeException
    Just an exception that can be thrown if a development utility is invoked, constructed, etc, and the setting in the application is not enabled. Includes a static method that also does this check so that it is not carbon copied throughout the code. If you see this error in your application, you need to call: Application.get().getDebugSettings().setDevelopmentUtilitiesEnabled(true)
    Author:
    Jeremy Thomerson
    See Also:
    Serialized Form
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void check()
      Verifies that development utilities are enabled.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DevelopmentUtilitiesNotEnabledException

        public DevelopmentUtilitiesNotEnabledException()
        Construct.
    • Method Detail

      • check

        public static void check()
        Verifies that development utilities are enabled.