36a8a9672f
passed in. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1460 542714f4-19e9-0310-aa3c-eee0fc999fb1
16 lines
331 B
Java
16 lines
331 B
Java
//
|
|
// $Id: MoveFailedException.java,v 1.1 2002/06/14 01:40:16 ray Exp $
|
|
|
|
package com.threerings.crowd.client;
|
|
|
|
/**
|
|
* An exception that indicates that the server did not allow us to move.
|
|
*/
|
|
public class MoveFailedException extends Exception
|
|
{
|
|
public MoveFailedException (String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|