Lines Matching refs:GraphIOException

33 import android.filterfw.io.GraphIOException;
49 public void execute(TextGraphReader reader) throws GraphIOException;
60 public void execute(TextGraphReader reader) throws GraphIOException {
64 throw new GraphIOException(e.getMessage());
91 public void execute(TextGraphReader reader) throws GraphIOException {
97 throw new GraphIOException(e.getMessage());
113 public void execute(TextGraphReader reader) throws GraphIOException {
118 throw new GraphIOException(e.getMessage());
147 public FilterGraph readGraphString(String graphString) throws GraphIOException {
169 private void parseString(String graphString) throws GraphIOException {
228 throw new GraphIOException("Unknown command '" + curCommand + "'!");
339 throw new GraphIOException("Unexpected end of input!");
344 public KeyValueMap readKeyValueAssignments(String assignments) throws GraphIOException {
351 Pattern endPattern) throws GraphIOException {
393 throw new GraphIOException(
404 throw new GraphIOException(scanner.unexpectedTokenMessage("<value>"));
418 throw new GraphIOException(
425 private void bindExternal(String name) throws GraphIOException {
430 throw new GraphIOException("Unknown external variable '" + name + "'! "
441 private void checkReferences() throws GraphIOException {
444 throw new GraphIOException(
451 private void applySettings() throws GraphIOException {
463 throw new GraphIOException("Unknown autobranch setting: " + value + "!");
469 throw new GraphIOException("Unknown @setting '" + setting + "'!");
476 Class expectedClass) throws GraphIOException {
478 throw new GraphIOException("Setting '" + setting + "' must have a value of type "
484 private void executeCommands() throws GraphIOException {