View Javadoc

1   package org.lsst.ccs.config;
2   
3   /**
4    * forwards an exception fired by the persistence layer.
5    * @author bamade
6    */
7   // Date: 25/04/12
8   
9   public class PersistenceLayerException extends Exception{
10      public PersistenceLayerException(Throwable cause) {
11          super(cause) ;
12      }
13  }