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

com.ircclouds.irc.api.ctcp.DCCReceiveException Maven / Gradle / Ivy

There is a newer version: 1.0-0014
Show newest version
package com.ircclouds.irc.api.ctcp;

import java.io.*;

import com.ircclouds.irc.api.*;

public class DCCReceiveException extends ApiException
{
	private DCCReceiveResult result;
	
	private IOException exc;
	
	public DCCReceiveException(DCCReceiveResult aResult, IOException aException)
	{
		super(DCCReceiveException.class.getName());
		
		result = aResult;
		exc = aException;
	}
	
	public IOException getException()
	{
		return exc;
	}
	
	public DCCReceiveResult getDCCReceiveResult()
	{
		return result;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy