Enum Class IOlapServiceException.Reason

java.lang.Object
java.lang.Enum<IOlapServiceException.Reason>
org.pentaho.platform.plugin.action.olap.IOlapServiceException.Reason
All Implemented Interfaces:
Serializable, Comparable<IOlapServiceException.Reason>, Constable
Enclosing class:
IOlapServiceException

public static enum IOlapServiceException.Reason extends Enum<IOlapServiceException.Reason>
Possible causes of an exception in the IOlapService.
  • Enum Constant Details

    • GENERAL

      public static final IOlapServiceException.Reason GENERAL
      An error occurred. See the root cause for more details.
    • ACCESS_DENIED

      public static final IOlapServiceException.Reason ACCESS_DENIED
      The operation could not be completed because of the security restrictions in effect for the user session passed as a parameter.
    • ALREADY_EXISTS

      public static final IOlapServiceException.Reason ALREADY_EXISTS
      A connection of the same name already exists and the overwrite flag was not used.
  • Method Details

    • values

      public static IOlapServiceException.Reason[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static IOlapServiceException.Reason valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • convert

      public static IOlapServiceException.Reason convert(Throwable t)