Class BlobQueryError

java.lang.Object
com.azure.storage.blob.models.BlobQueryError

public class BlobQueryError extends Object
Defines a blob query error that can be returned on parsing a blob query request.
  • Constructor Details

    • BlobQueryError

      public BlobQueryError(boolean fatal, String name, String description, long position)
      Creates a new BlobQueryError object.
      Parameters:
      fatal - Whether or not the error is fatal.
      name - The name of the error.
      description - A description of the error.
      position - The blob offset at which the error occurred.
  • Method Details

    • isFatal

      public boolean isFatal()
      Whether or not the error is fatal. If true, this error prevents further query processing. More result data may be returned, but there is no guarantee that all of the original data will be processed. If false, this error does not prevent further query processing.
      Returns:
      Whether or not the error is fatal.
    • getName

      public String getName()
      Returns:
      The name of the error.
    • getDescription

      public String getDescription()
      Returns:
      A description of the error.
    • getPosition

      public long getPosition()
      Returns:
      The blob offset at which the error occurred.
    • toString

      public String toString()
      Overrides:
      toString in class Object