Class StaticThemeInstaller.InstallException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.theme.StaticThemeInstaller.InstallException
All Implemented Interfaces:
Serializable
Enclosing class:
StaticThemeInstaller

public static class StaticThemeInstaller.InstallException extends RuntimeException
Raised on any failure during ZIP validation or extraction.
See Also:
  • Constructor Details

    • InstallException

      public InstallException(String msg)
      Constructs an exception with the default OTHER code.
      Parameters:
      msg - diagnostic message
    • InstallException

      public InstallException(String msg, Throwable cause)
      Constructs an exception with the default OTHER code and a cause.
      Parameters:
      msg - diagnostic message
      cause - underlying throwable
    • InstallException

      public InstallException(StaticThemeInstaller.InstallException.Code code, String msg)
      Constructs an exception with the supplied structured code.
      Parameters:
      code - structured error code
      msg - diagnostic message
    • InstallException

      public InstallException(StaticThemeInstaller.InstallException.Code code, String msg, Throwable cause)
      Constructs an exception with the supplied structured code and a cause.
      Parameters:
      code - structured error code
      msg - diagnostic message
      cause - underlying throwable
  • Method Details