Class InvalidObjectIdException

All Implemented Interfaces:
Serializable

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

  • Constructor Details

    • InvalidObjectIdException

      public InvalidObjectIdException(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.
    • InvalidObjectIdException

      public InvalidObjectIdException(String id)
      Constructor for InvalidObjectIdException
      Parameters:
      id - the invalid id.
      Since:
      4.1
  • Method Details

    • msg

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