KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > conflict > StrictConflictException


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package fr.jayasoft.ivy.conflict;
7
8 public class StrictConflictException extends RuntimeException JavaDoc {
9
10     public StrictConflictException() {
11         super();
12     }
13
14     public StrictConflictException(String JavaDoc msg) {
15         super(msg);
16     }
17
18     public StrictConflictException(Throwable JavaDoc t) {
19         super(t);
20     }
21
22     public StrictConflictException(String JavaDoc msg, Throwable JavaDoc t) {
23         super(msg, t);
24     }
25
26 }
27
Popular Tags