| Issue 106: | FileUploadで失敗した場合に適切な例外を返すように修正する. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
現在だと
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
Labels:
Milestone-T2-0.4
Aug 27, 2008
UploadFileNotFoundExceptionを追加した.
Status:
Fixed
|