Class InvalidLongObjectIdException

All Implemented Interfaces:
Serializable

public class InvalidLongObjectIdException extends IllegalArgumentException
Thrown when an invalid long object id is passed in as an argument.
Since:
4.3
See Also:
  • Field Details

  • Constructor Details

    • InvalidLongObjectIdException

      public InvalidLongObjectIdException(byte[] bytes, int offset, int length)
      Create exception with bytes of the invalid object id.
      Parameters:
      bytes - containing the invalid id.
      offset - in the byte array where the error occurred.
      length - of the sequence of invalid bytes.
    • InvalidLongObjectIdException

      public InvalidLongObjectIdException(String idString)

      Constructor for InvalidLongObjectIdException.

      Parameters:
      idString - String containing the invalid id
  • Method Details

    • asAscii

      private static String asAscii(byte[] bytes, int offset, int length)