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

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

Changed the licence
to a funniest one.

File size: 650 bytes
Line 
1package fr.mael.jiwigo.transverse.exception;
2
3/*
4 *  jiwigo-ws-api Piwigo webservice access Api
5 *  Copyright (c) 2010-2011 Mael mael@le-guevel.com
6 *                All Rights Reserved
7 *
8 *  This library is free software. It comes without any warranty, to
9 *  the extent permitted by applicable law. You can redistribute it
10 *  and/or modify it under the terms of the Do What The Fuck You Want
11 *  To Public License, Version 2, as published by Sam Hocevar. See
12 *  http://sam.zoy.org/wtfpl/COPYING for more details.
13 */
14public class WrongChunkSizeException extends Exception {
15    public WrongChunkSizeException(String msg) {
16        super(msg);
17    }
18
19}
Note: See TracBrowser for help on using the repository browser.