1 salcianu 1.1 // UnknownAllocationSiteError.java, created Tue Feb 11 11:30:08 2003 by salcianu
 2 salcianu 1.1 // Copyright (C) 2000 Alexandru Salcianu <salcianu@MIT.EDU>
 3 salcianu 1.1 // Licensed under the terms of the GNU GPL; see COPYING for details.
 4 salcianu 1.1 package harpoon.Instrumentation.AllocationStatistics;
 5 salcianu 1.1 
 6 salcianu 1.1 /** Error thrown if one tries to obtain the unique allocID for
 7 salcianu 1.1     a site that <code>AllocationNUmbering</code> doesn't know
 8 salcianu 1.1     about. 
 9 salcianu 1.1     
10 salcianu 1.1     @author  Alexandru Salcianu <salcianu@MIT.EDU>
11 salcianu 1.1     @version $Id: UnknownAllocationSiteError.java,v 1.1 2003/02/11 20:16:01 salcianu Exp $ */
12 salcianu 1.1 public class UnknownAllocationSiteError extends Error {
13 salcianu 1.1     /** Creates an <code>UnknownAllocationSiteError</code>. */
14 salcianu 1.1     public UnknownAllocationSiteError(String message) {
15 salcianu 1.1         super(message);
16 salcianu 1.1     }
17 salcianu 1.1 }
18 salcianu 1.1 
19 salcianu 1.1