/src/kilim/KilimException.java
http://github.com/kilim/kilim · Java · 14 lines · 5 code · 4 blank · 5 comment · 0 complexity · 69673b9f285cf558069dad9e50089a40 MD5 · raw file
- /* Copyright (c) 2006, Sriram Srinivasan
- *
- * You may distribute this software under the terms of the license
- * specified in the file "License"
- */
- package kilim;
- public class KilimException extends RuntimeException {
- private static final long serialVersionUID = 7856831331381969854L;
- public KilimException(String msg) {super(msg);}
- }