/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
- /* Copyright (c) 2006, Sriram Srinivasan
- *
- * You may distribute this software under the terms of the license
- * specified in the file "License"
- */
- package kilim.analysis;
- public class IncompatibleTypesException extends Exception {
- public IncompatibleTypesException(String message) {
- super(message);
- }
- private static final long serialVersionUID = 1270645277746840738L;
-
- }