Checking core structure...
compile_project:10: no matches found: *.in
rm -f edt-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
./edt/Document.java:25: error: cannot find symbol
	public void newAuthor(Author author)throws DuplicateAuthorException{
	                                           ^
  symbol:   class DuplicateAuthorException
  location: class Document
./edt/Document.java:31: error: cannot find symbol
	public void nameParagraph (Section currentSec, String uniqueID, int localID)throws NoSuchParagraphException{
	                                                                                   ^
  symbol:   class NoSuchParagraphException
  location: class Document
./edt/Document.java:39: error: cannot find symbol
	public void nameSection (Section currentSec, String uniqueID, int localID)throws NoSuchSectionException{
	                                                                                 ^
  symbol:   class NoSuchSectionException
  location: class Document
./edt/Section.java:48: error: cannot find symbol
	public Section goToSection(int localID)throws NoSuchSectionException{
	                                              ^
  symbol:   class NoSuchSectionException
  location: class Section
./edt/Section.java:75: error: cannot find symbol
	public void editParagraph(int localID, String newContent)throws NoSuchParagraphException{
	                                                                ^
  symbol:   class NoSuchParagraphException
  location: class Section
./edt/Section.java:80: error: cannot find symbol
	public void removeParagraph(int localID)throws NoSuchParagraphException{
	                                               ^
  symbol:   class NoSuchParagraphException
  location: class Section
./edt/Section.java:85: error: cannot find symbol
	public void removeSection(int localID)throws NoSuchSectionException{
	                                             ^
  symbol:   class NoSuchSectionException
  location: class Section
./edt/Editor.java:74: error: cannot find symbol
	public void addAuthor(Document openDoc, String name, String email)throws DuplicateAuthorException {
	                                                                         ^
  symbol:   class DuplicateAuthorException
  location: class Editor
./edt/Editor.java:179: error: cannot find symbol
	public String findTextElement(String uniqueID, Section openDoc) throws TextElementException{
	                                                                       ^
  symbol:   class TextElementException
  location: class Editor
./edt/Section.java:49: error: cannot find symbol
		if (this.sections.size() < localID){throw new NoSuchSectionException(localID);}
		                                              ^
  symbol:   class NoSuchSectionException
  location: class Section
./edt/Section.java:76: error: cannot find symbol
		if (localID > this.paragraphs.size()){throw new NoSuchParagraphException(localID);}
		                                                ^
  symbol:   class NoSuchParagraphException
  location: class Section
./edt/Section.java:81: error: cannot find symbol
		if(localID > this.paragraphs.size()){throw new NoSuchParagraphException(localID);}
		                                               ^
  symbol:   class NoSuchParagraphException
  location: class Section
./edt/Section.java:86: error: cannot find symbol
		if(this.sections.size() < localID){throw new NoSuchSectionException(localID);}
		                                             ^
  symbol:   class NoSuchSectionException
  location: class Section
./edt/Document.java:26: error: cannot find symbol
		if (this.authors.get(author.getName()) != null){throw new DuplicateAuthorException(author.getName());}
		                                                          ^
  symbol:   class DuplicateAuthorException
  location: class Document
./edt/Document.java:34: error: cannot find symbol
		if (localID>paragraphs.size()){throw new NoSuchParagraphException(localID);}
		                                         ^
  symbol:   class NoSuchParagraphException
  location: class Document
./edt/Document.java:42: error: cannot find symbol
		if (localID>sections.size()){throw new NoSuchSectionException(localID);}
		                                       ^
  symbol:   class NoSuchSectionException
  location: class Document
./edt/Editor.java:196: error: cannot find symbol
		if (content == ""){ throw new TextElementException(uniqueID);}
		                              ^
  symbol:   class TextElementException
  location: class Editor
17 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1