getEntity( uuid: string ): Entity {
        if ( !this.hasEntity( uuid ) ) {
            throw Error( "No enitity with that UUID found!" );
        }
        return getItem( uuid, this._entities, "uuid" );