Add SQLException declaration - part of lazy initialization enhancement

git-svn-id: http://scm.dspace.org/svn/repo/trunk@1335 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Richard Rodgers
2005-10-18 19:44:34 +00:00
parent a05fdb984f
commit 618b3277bd
3 changed files with 3 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ public interface InProgressSubmission
*
* @return the submitting e-person
*/
EPerson getSubmitter();
EPerson getSubmitter() throws SQLException;
/**
* Find out if the submission has (or is intended to have) more than one

View File

@@ -559,7 +559,7 @@ public class WorkspaceItem implements InProgressSubmission
return collection;
}
public EPerson getSubmitter()
public EPerson getSubmitter() throws SQLException
{
return item.getSubmitter();
}

View File

@@ -383,7 +383,7 @@ public class WorkflowItem implements InProgressSubmission
return collection;
}
public EPerson getSubmitter()
public EPerson getSubmitter() throws SQLException
{
return item.getSubmitter();
}