1 22 23 28 29 package org.xquark.mapper.util; 30 31 import org.xquark.mapper.RepositoryException; 32 33 37 public class RepositoryRuntimeException extends RuntimeException  38 { 39 private static final String RCSRevision = "$Revision: 1.1 $"; 40 private static final String RCSName = "$Name: $"; 41 42 RepositoryException e; 43 44 45 public RepositoryRuntimeException(RepositoryException e) 46 { 47 this.e = e; 48 } 49 50 public RepositoryException getRepositoryException() 51 { 52 return e; 53 } 54 } 55 | Popular Tags |