/* * Copyright (C) 2008, Robin Rosenberg * Copyright (C) 2006, Shawn O. Pearce * Copyright (C) 2009, Vasyl' Vavrychuk 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; /** * This signals a revision or object reference was not * properly formatted. */ public class RevisionSyntaxException extends IllegalArgumentException { private static final long serialVersionUID = 1L; private final String revstr; /** * Construct a RevisionSyntaxException indicating a syntax problem with a * revision (or object) string. * * @param revstr The problematic revision string */ public RevisionSyntaxException(String revstr) { this.revstr = revstr; } /** * Construct a RevisionSyntaxException indicating a syntax problem with a * revision (or object) string. * * @param message a specific reason * @param revstr The problematic revision string */ public RevisionSyntaxException(String message, String revstr) { super(message); this.revstr = revstr; } /** * Get the problematic revision string * * @return the problematic revision string * @since 6.8 */ public String getRevstr() { return revstr; } }