View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package cz.cuni.amis.pogamut.base.utils;
6   
7   /**
8    * Thrown when the property wasn't found. This is usually exception that should 
9    * terminate the program.
10   * @author Ik
11   */
12  public class PropertyNotFoundException extends RuntimeException {
13  
14      public PropertyNotFoundException(String message, Throwable cause) {
15          super(message, cause);
16      }
17      
18          public PropertyNotFoundException(String message) {
19          super(message);
20      }
21  }