1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * and open the template in the editor. 5 */ 6 package fr.paris.lutece.plugins.dataviz.service; 7 8 9 /** 10 * 11 * @author evrardmax 12 */ 13 public class StatNotFoundException extends Exception 14 { 15 public StatNotFoundException( String statName ) 16 { 17 super( "Statistique '" + statName + "' not found !" ); 18 } 19 }