View Javadoc

1   /*
2    * AuditRuntimeException.java
3    * Created on 9 Сентябрь 2006 г., 13:14
4    */
5   
6   package org.weda.store;
7   
8   /**
9    *
10   * @author Mikhail Titov
11   */
12  public class AuditRuntimeException extends java.lang.Error {
13      
14      public AuditRuntimeException(String msg) {
15          super(msg);
16      }
17      public AuditRuntimeException(String msg, Throwable cause) {
18          super(msg, cause);
19      }
20  }