licensing and tabs

This commit is contained in:
benfry
2003-07-24 22:54:23 +00:00
parent 692e5ed964
commit dcdbca5293
9 changed files with 613 additions and 583 deletions

View File

@@ -27,6 +27,9 @@ import java.io.*;
public class PdeCompiler implements PdeMessageConsumer{
static final String SUPER_BADNESS =
"Strange error while compiling, " +
"please send this code to processing@media.mit.edu";
String buildPath;
String className;
@@ -82,8 +85,7 @@ public class PdeCompiler implements PdeMessageConsumer{
// fairly wrong, one possibility is that jikes has crashed.
//
if (result != 0 && result != 1 ) {
exception = new PdeException("Error while compiling, " +
"please send code to bugs@proce55ing.net");
exception = new PdeException(SUPER_BADNESS);
editor.error(exception);
}