Class GravitinoRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.gravitino.exceptions.GravitinoRuntimeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AlreadyExistsException, AuthorizationPluginException, BadRequestException, ConnectionFailedException, ForbiddenException, IllegalPropertyException, InUseException, NonEmptyCatalogException, NonEmptyEntityException, NonEmptyMetalakeException, NonEmptySchemaException, NotFoundException, NotInUseException, UnauthorizedException

public class GravitinoRuntimeException extends RuntimeException
Base class for all Apache Gravitino runtime exceptions.
See Also:
  • Constructor Details

    • GravitinoRuntimeException

      public GravitinoRuntimeException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message.
    • GravitinoRuntimeException

      @FormatMethod public GravitinoRuntimeException(@FormatString String message, Object... args)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message.
      args - the arguments to the message.
    • GravitinoRuntimeException

      @FormatMethod public GravitinoRuntimeException(Throwable cause, @FormatString String message, Object... args)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      cause - the cause.
      message - the detail message.
      args - the arguments to the message.