StoredObjectRepresentationNotAvailableException.java

  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.  * A previously selected representation is no longer available.
  13.  */
  14. public class StoredObjectRepresentationNotAvailableException extends Exception {

  15.     private static final long serialVersionUID = 1L;

  16.     /**
  17.      * Creates a new instance.
  18.      *
  19.      * @param cause
  20.      *            {@link Throwable} that caused this exception
  21.      * @since 6.0
  22.      */
  23.     public StoredObjectRepresentationNotAvailableException(Throwable cause) {
  24.         super(cause);
  25.     }
  26. }