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

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

Adds support for changing level on addSimple.

  • Property svn:mime-type set to text/plain
File size: 368 bytes
Line 
1package fr.mael.jiwigo.transverse.exception;
2
3public class JiwigoException extends Exception {
4
5    private static final long serialVersionUID = -6224666480360206953L;
6
7    public JiwigoException(String msg) {
8        super(msg);
9    }
10
11    public JiwigoException(Throwable t) {
12        super(t);
13    }
14
15    public JiwigoException(String msg, Throwable t) {
16        super(msg, t);
17    }
18
19}
Note: See TracBrowser for help on using the repository browser.