/src/kilim/analysis/IncompatibleTypesException.java
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 7package kilim.analysis; 8 9public class IncompatibleTypesException extends Exception { 10 public IncompatibleTypesException(String message) { 11 super(message); 12 } 13 private static final long serialVersionUID = 1270645277746840738L; 14 15}