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