1 17 package org.alfresco.service.cmr.repository; 18 19 20 25 public abstract class AbstractStoreException extends RuntimeException  26 { 27 private StoreRef storeRef; 28 29 public AbstractStoreException(StoreRef storeRef) 30 { 31 this(null, storeRef); 32 } 33 34 public AbstractStoreException(String msg, StoreRef storeRef) 35 { 36 super(msg); 37 this.storeRef = storeRef; 38 } 39 40 43 public StoreRef getStoreRef() 44 { 45 return storeRef; 46 } 47 } 48 | Popular Tags |