Package marauroa.common.game

Examples of marauroa.common.game.RPObjectNotFoundException


          world.put(object.getID(), object);
        }
      }
    } catch (Exception e) {
      logger.error("error in applyPerceptionAddedRPObjects", e);
      throw new RPObjectNotFoundException(RPObject.INVALID_ID);
    }
  }
View Full Code Here


          world.remove(object.getID());
        }
      }
    } catch (Exception e) {
      logger.error("error in applyPerceptionDeletedRPObjects", e);
      throw new RPObjectNotFoundException(RPObject.INVALID_ID);
    }
  }
View Full Code Here

      logger.error("world is [" + world.toString() + "]");
      throw e;
    } catch (Exception e) {
      logger.error("error in applyModifiedRPObjects", e);
      logger.error("world is [" + world.toString() + "]");
      throw new RPObjectNotFoundException(RPObject.INVALID_ID);
    }
  }
View Full Code Here

        object.applyDifferences(added, deleted);
      }
    } catch (Exception e) {
      logger.error("error in applyPerceptionMyRPObject", e);
      throw new RPObjectNotFoundException(RPObject.INVALID_ID);
    }
  }
View Full Code Here

TOP

Related Classes of marauroa.common.game.RPObjectNotFoundException

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.