Make attempt to refresh when merge conflicts exists more user friendly
[egit.git] / org.spearce.jgit / src / org / spearce / jgit / errors / NotSupportedException.java
blobd291b0f9264058748d13b5d836256d9ee6336e7f
1 /*
2 * Copyright (C) 20067 Robin Rosenberg
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.errors;
19 import java.io.IOException;
21 public class NotSupportedException extends IOException {
22 private static final long serialVersionUID = 1L;
24 public NotSupportedException(final String s) {
25 super(s);