1 33 34 package edu.rice.cs.drjava.model; 35 36 41 public class DocumentClosedException extends RuntimeException { 42 private OpenDefinitionsDocument _document; 43 44 47 public DocumentClosedException(OpenDefinitionsDocument d, String s) { 48 super(s); 49 _document = d; 50 } 51 52 55 public OpenDefinitionsDocument getDocument() { 56 return _document; 57 } 58 } | Popular Tags |