Files
narya/src/java/com/threerings/crowd/client/MoveFailedException.java
T
Ray Greenwell 36a8a9672f zone moves and portal traversals can now have an optional result listener
passed in.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1460 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-06-14 01:40:16 +00:00

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);
}
}