1   /************************************************************
2   *                     Copyright                            *
3   * Portions of this software are Copyright (c) 1993 - 2002, *
4   * Chad Z. Hower (Kudzu) and the Indy Pit Crew              *
5   *  - http://www.nevrona.com/Indy/                          *
6   ************************************************************/
7   package org.indy.socks;
8   
9   /***
10   *  IdSocksRequestFailed
11   *
12   *@author    owen
13   */
14  public class SocksRequestFailedException extends SocksException {
15    /***
16     *  Constructor for the IdSocksRequestFailed object
17     *
18     *@param  msg  Description of the Parameter
19     */
20    protected SocksRequestFailedException(String msg) {
21      super(msg);
22    }
23  }
This page was automatically generated by Maven