Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osscontributor/7759a5d7c8a3cd6b4e25c7009f139b6f to your computer and use it in GitHub Desktop.
Save osscontributor/7759a5d7c8a3cd6b4e25c7009f139b6f to your computer and use it in GitHub Desktop.
// This is a bad idea
File f = File.createTempFile("temp", Long.toString(System.nanoTime()));
System.setErr(new PrintStream(new FileOutputStream(f)) {
@Override
public void println(String x) {
throw new RuntimeException(x);
}
});
System.err.println("overflow!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment