Package marauroa.common.game

Examples of marauroa.common.game.RPObjectInvalidException


      if (!object.isHidden()) {
        perception.added(object);
      }
    } catch (Exception e) {
      throw new RPObjectInvalidException(e);
    }
  }
View Full Code Here


   */
  public void modify(RPObject object) throws RPObjectInvalidException {
    try {
      modified.add(object);
    } catch (Exception e) {
      throw new RPObjectInvalidException(e.getMessage());
    }
  }
View Full Code Here

      requestSync(object);

    } catch (Exception e) {
      logger.error("error changing Zone", e);
      throw new RPObjectInvalidException("zoneid");
    }
  }
View Full Code Here

TOP

Related Classes of marauroa.common.game.RPObjectInvalidException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.