/src/kilim/KilimException.java

http://github.com/kilim/kilim · Java · 14 lines · 5 code · 4 blank · 5 comment · 0 complexity · 69673b9f285cf558069dad9e50089a40 MD5 · raw file

  1. /* Copyright (c) 2006, Sriram Srinivasan
  2. *
  3. * You may distribute this software under the terms of the license
  4. * specified in the file "License"
  5. */
  6. package kilim;
  7. public class KilimException extends RuntimeException {
  8. private static final long serialVersionUID = 7856831331381969854L;
  9. public KilimException(String msg) {super(msg);}
  10. }