127b710c3SHector Caballero /* 2*5c5f7c6bSMatthias Sohn * Copyright (C) 2017 Ericsson and others 327b710c3SHector Caballero * 4*5c5f7c6bSMatthias Sohn * This program and the accompanying materials are made available under the 5*5c5f7c6bSMatthias Sohn * terms of the Eclipse Distribution License v. 1.0 which is available at 6*5c5f7c6bSMatthias Sohn * https://www.eclipse.org/org/documents/edl-v10.php. 727b710c3SHector Caballero * 8*5c5f7c6bSMatthias Sohn * SPDX-License-Identifier: BSD-3-Clause 927b710c3SHector Caballero */ 1027b710c3SHector Caballero 1127b710c3SHector Caballero package org.eclipse.jgit.errors; 1227b710c3SHector Caballero 1327b710c3SHector Caballero import java.io.IOException; 1427b710c3SHector Caballero 1527b710c3SHector Caballero /** 1627b710c3SHector Caballero * Thrown when an operation was canceled 1727b710c3SHector Caballero * 1827b710c3SHector Caballero * @since 4.7 1927b710c3SHector Caballero */ 2027b710c3SHector Caballero public class CancelledException extends IOException { 2127b710c3SHector Caballero private static final long serialVersionUID = 1L; 2227b710c3SHector Caballero 2327b710c3SHector Caballero /** 2464785778SMatthias Sohn * Constructor for CancelledException 2564785778SMatthias Sohn * 2627b710c3SHector Caballero * @param message 2764785778SMatthias Sohn * error message 2827b710c3SHector Caballero */ CancelledException(String message)2927b710c3SHector Caballero public CancelledException(String message) { 3027b710c3SHector Caballero super(message); 3127b710c3SHector Caballero } 3227b710c3SHector Caballero } 33