/* * Copyright (C) 2009, Jonas Fonseca * Copyright (C) 2007, Robin Rosenberg * Copyright (C) 2008, Shawn O. Pearce and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Distribution License v. 1.0 which is available at * https://www.eclipse.org/org/documents/edl-v10.php. * * SPDX-License-Identifier: BSD-3-Clause */ package org.eclipse.jgit.errors; import static java.nio.charset.StandardCharsets.US_ASCII; import java.text.MessageFormat; import org.eclipse.jgit.internal.JGitText; /** * Thrown when an invalid object id is passed in as an argument. */ public class InvalidObjectIdException extends IllegalArgumentException { private static final long serialVersionUID = 1L; /** * Create exception with bytes of the invalid object id. * * @param bytes containing the invalid id. * @param offset in the byte array where the error occurred. * @param length of the sequence of invalid bytes. */ public InvalidObjectIdException(byte[] bytes, int offset, int length) { super(msg(bytes, offset, length)); } /** * Constructor for InvalidObjectIdException * * @param id * the invalid id. * @since 4.1 */ public InvalidObjectIdException(String id) { super(MessageFormat.format(JGitText.get().invalidId, id)); } private static String msg(byte[] bytes, int offset, int length) { try { return MessageFormat.format( JGitText.get().invalidId, new String(bytes, offset, length, US_ASCII)); } catch (StringIndexOutOfBoundsException e) { return JGitText.get().invalidId0; } } }