1 17 package org.alfresco.service.cmr.repository; 18 19 20 26 public class InvalidStoreRefException extends AbstractStoreException 27 { 28 private static final long serialVersionUID = 3258126938479409463L; 29 30 public InvalidStoreRefException(StoreRef storeRef) 31 { 32 super(storeRef); 33 } 34 35 public InvalidStoreRefException(String msg, StoreRef storeRef) 36 { 37 super(msg, storeRef); 38 } 39 } 40 | Popular Tags |