All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taskadapter.redmineapi.internal.io.MarkedIOException Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems. This project was originally a part of Task Adapter application (http://www.taskadapter.com) and then was open-sourced.

The newest version!
package com.taskadapter.redmineapi.internal.io;

import java.io.IOException;

/**
 * IOException, marked by a tag.
 * 
 * @author maxkar
 * 
 */
public class MarkedIOException extends IOException {
	private static final long serialVersionUID = 1L;
	private final String tag;

	public MarkedIOException(String tag, IOException cause) {
		super(cause);
		this.tag = tag;
	}

	public String getTag() {
		return tag;
	}

	public IOException getIOException() {
		return (IOException) getCause();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy