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   import org.indy.IndyException;
10  
11  
12  /***
13   *  IdSocksError
14   *
15   *@author    owen
16   */
17  public class SocksException extends IndyException {
18    /***
19   *  Constructor for the IdSocksError object
20   *
21   *@param  msg  Description of the Parameter
22   */
23    protected SocksException(String msg) {
24      super(msg);
25    }
26  }
This page was automatically generated by Maven