//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: //ORIGINAL LINE: Object get(org.neo4j.kernel.internal.GraphDatabaseAPI graphDb, ParameterList parameters, String name) throws org.neo4j.server.rest.repr.BadInputException internal override object Get(GraphDatabaseAPI graphDb, ParameterList parameters, string name) { try { return(parameters.GetUri(name).toURL()); } catch (MalformedURLException e) { throw new BadInputException(e); } }
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: //ORIGINAL LINE: Object get(org.neo4j.kernel.internal.GraphDatabaseAPI graphDb, ParameterList parameters, String name) throws org.neo4j.server.rest.repr.BadInputException internal override object Get(GraphDatabaseAPI graphDb, ParameterList parameters, string name) { return(parameters.GetUri(name)); }