/src/kilim/analysis/IncompatibleTypesException.java

http://github.com/kilim/kilim · Java · 15 lines · 7 code · 3 blank · 5 comment · 0 complexity · ed757ed1f9a304a504d65c67d3bfe3a8 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.analysis;
  7. public class IncompatibleTypesException extends Exception {
  8. public IncompatibleTypesException(String message) {
  9. super(message);
  10. }
  11. private static final long serialVersionUID = 1270645277746840738L;
  12. }