source: extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/transverse/exception/WrongChunkSizeException.java @ 9394

Last change on this file since 9394 was 9394, checked in by mlg, 13 years ago

Major bug fix :
The ImageService allowed the chunk size to be 0 which led to fill the temporary folder.
Now an exception is thrown if the value is 0

File size: 174 bytes
Line 
1package fr.mael.jiwigo.transverse.exception;
2
3public class WrongChunkSizeException extends Exception {
4    public WrongChunkSizeException(String msg) {
5        super(msg);
6    }
7
8}
Note: See TracBrowser for help on using the repository browser.