use of exceptions.FinderTerminateException in project solution-finder by knewjade.
the class PercentEntryPoint method close.
@Override
public void close() throws FinderTerminateException {
try {
flush();
logWriter.close();
} catch (IOException | FinderExecuteException e) {
throw new FinderTerminateException(e);
}
}
use of exceptions.FinderTerminateException in project solution-finder by knewjade.
the class PathEntryPoint method close.
@Override
public void close() throws FinderTerminateException {
try {
flush();
logWriter.close();
} catch (IOException | FinderExecuteException e) {
throw new FinderTerminateException(e);
}
}
use of exceptions.FinderTerminateException in project solution-finder by knewjade.
the class SetupEntryPoint method close.
@Override
public void close() throws FinderTerminateException {
try {
flush();
logWriter.close();
} catch (IOException | FinderExecuteException e) {
throw new FinderTerminateException(e);
}
}
use of exceptions.FinderTerminateException in project solution-finder by knewjade.
the class MoveEntryPoint method close.
@Override
public void close() throws FinderTerminateException {
try {
flush();
logWriter.close();
} catch (IOException | FinderExecuteException e) {
throw new FinderTerminateException(e);
}
}
Aggregations