blob: b189496cb910b147dcaf434f2419b7c7f046ce0d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Frank Becker and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Frank Becker - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.bugzilla.rest.core;
public class BugzillaRestResourceNotFoundException extends BugzillaRestException {
private static final long serialVersionUID = 5227546210820677763L;
public BugzillaRestResourceNotFoundException() {
}
public BugzillaRestResourceNotFoundException(String message) {
super(message);
}
public BugzillaRestResourceNotFoundException(Throwable cause) {
super(cause);
}
public BugzillaRestResourceNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}