Issue 106: FileUploadで失敗した場合に適切な例外を返すように修正する.
Status:  Fixed
Owner:
Closed:  Aug 2008
Project Member Reported by shinpei.ohtani@gmail.com, Aug 27, 2008

現在だと

	protected UploadFile getSingleUploadFile(UploadFile[] files) {
		if (files.length == 0) {
			throw new IllegalStateException();
		}
		return files[0];
	}


のようになっていて、何の例外かわかりにくいため、
適切な例外を返すように修正する.
Aug 27, 2008
Project Member #1 shinpei.ohtani@gmail.com
(No comment was entered for this change.)
Labels: Milestone-T2-0.4
Aug 27, 2008
Project Member #2 shinpei.ohtani@gmail.com
UploadFileNotFoundExceptionを追加した.
Status: Fixed