View Javadoc
1   /*
2    * Copyright (C) 2010, 2021 Google Inc. and others
3    *
4    * This program and the accompanying materials are made available under the
5    * terms of the Eclipse Distribution License v. 1.0 which is available at
6    * https://www.eclipse.org/org/documents/edl-v10.php.
7    *
8    * SPDX-License-Identifier: BSD-3-Clause
9    */
10  package org.eclipse.jgit.errors;
11  
12  /**
13   * A previously selected representation is no longer available.
14   */
15  public class StoredObjectRepresentationNotAvailableException extends Exception {
16  
17  	private static final long serialVersionUID = 1L;
18  
19  	/**
20  	 * Creates a new instance.
21  	 *
22  	 * @param cause
23  	 *            {@link Throwable} that caused this exception
24  	 * @since 6.0
25  	 */
26  	public StoredObjectRepresentationNotAvailableException(Throwable cause) {
27  		super(cause);
28  	}
29  }