Checking core structure...
compile_project:10: no matches found: *.in
rm -f poof-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
(cd src; jar cf ../poof-core.jar `find . -name \*.class -o -name \*.java`)
Checking manager interface structure...
rm -f poof-textui.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 -cp /usr/share/java/po-uilib.jar:/usr/share/java/poof-support.jar:../../poof-core/poof-core.jar `find . -name \*.java`)
./poof/textui/main/Login.java:35: error: unreported exception CoreUserUnknownException; must be caught or declared to be thrown
		_receiver.login(username);
		               ^
./poof/textui/shell/RemoveEntry.java:37: error: constructor IllegalRemovalException in class IllegalRemovalException cannot be applied to given types;
			catch(CoreIllegalRemovalException e){throw new IllegalRemovalException(e.getMessage());}
			                                           ^
  required: no arguments
  found: String
  reason: actual and formal argument lists differ in length
2 errors
make: *** [all] Error 1