Create a show-ref command line for jgit
[egit/zawir.git] / org.spearce.jgit / src / org / spearce / jgit / pgm / Die.java
blob828c42d7d93539ff303254cd345df6c1eb092e74
1 /*
2 * Copyright (C) 2008 Shawn Pearce <spearce@spearce.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License, version 2, as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
17 package org.spearce.jgit.pgm;
19 class Die extends RuntimeException {
20 private static final long serialVersionUID = 1L;
22 Die(final String why) {
23 super(why);