View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package org.lcsim.recon.tracking.seedtracker.strategybuilder;
7   
8   /**
9    *
10   * @author cozzy
11   */
12  public class DetectorMismatchException extends RuntimeException {
13      public DetectorMismatchException(String expectedName, String actualName) {
14          super("Expected detector: "+expectedName+". Actual detector: "+actualName); 
15      }
16  }