OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 174 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 174 Rev 177
Line 11... Line 11...
11
 * When distributing the software, include this License Header Notice in each file.
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
12
 */
13
 
13
 
14
 package org.openconcerto.utils.cc;
14
 package org.openconcerto.utils.cc;
15
 
15
 
16
public interface IExnFactory<E, X extends Exception> {
16
public interface IExnFactory<E, X extends Exception> extends I2ExnFactory<E, X, RuntimeException> {
17
 
-
 
18
    public abstract E createChecked() throws X;
-
 
19
 
17
 
20
}
18
}