getSystem( name: string ): System {
        if ( !this.hasSystem( name ) ) {
            throw Error( "No system with that name found!" );
        }
        return getItem( name, this._systems, "name" );