Class RequestError

java.lang.Object
org.graylog2.plugin.rest.RequestError
All Implemented Interfaces:
GenericError

public abstract class RequestError extends Object implements GenericError
  • Constructor Details

    • RequestError

      public RequestError()
  • Method Details

    • line

      public abstract int line()
    • column

      public abstract int column()
    • path

      public abstract String path()
    • referencePath

      public abstract Optional<String> referencePath()
    • create

      public static RequestError create(String message, int line, int column, String path, @Nullable String reference)