2013-02-07 15:19:47 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
2013-02-07 20:10:22 +01:00
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
2013-02-07 15:19:47 +01:00
|
|
|
*
|
|
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2008-07-15 04:59:21 +02:00
|
|
|
package org.jivesoftware.smack.proxy;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An exception class to handle exceptions caused by proxy.
|
|
|
|
*
|
|
|
|
* @author Atul Aggarwal
|
|
|
|
*/
|
|
|
|
public class ProxyException
|
|
|
|
extends IOException
|
|
|
|
{
|
|
|
|
public ProxyException(ProxyInfo.ProxyType type, String ex, Throwable cause)
|
|
|
|
{
|
2008-07-15 05:17:43 +02:00
|
|
|
super("Proxy Exception " + type.toString() + " : "+ex+", "+cause);
|
2008-07-15 04:59:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public ProxyException(ProxyInfo.ProxyType type, String ex)
|
|
|
|
{
|
|
|
|
super("Proxy Exception " + type.toString() + " : "+ex);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProxyException(ProxyInfo.ProxyType type)
|
|
|
|
{
|
|
|
|
super("Proxy Exception " + type.toString() + " : " + "Unknown Error");
|
|
|
|
}
|
|
|
|
}
|