8a4c46badc
changed to Presents and Party changed to Crowd. Whee! git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@431 542714f4-19e9-0310-aa3c-eee0fc999fb1
21 lines
508 B
Java
21 lines
508 B
Java
//
|
|
// $Id: LogonException.java,v 1.3 2001/10/11 04:07:52 mdb Exp $
|
|
|
|
package com.threerings.presents.client;
|
|
|
|
/**
|
|
* A logon exception is used to indicate a failure to log on to the
|
|
* server. The reason for failure is encoded as a string and stored in the
|
|
* message field of the exception.
|
|
*/
|
|
public class LogonException extends Exception
|
|
{
|
|
/**
|
|
* Constructs a logon exception with the supplied logon failure code.
|
|
*/
|
|
public LogonException (String code)
|
|
{
|
|
super(code);
|
|
}
|
|
}
|