1 23 package org.apache.slide.webdav.util; 24 25 import org.apache.slide.webdav.WebdavException; 27 28 34 public class LabeledRevisionNotFoundException extends WebdavException { 35 36 39 protected String label = null; 40 41 44 protected String resourcePath = null; 45 46 53 public LabeledRevisionNotFoundException(String resourcePath, String label) { 54 55 super(WebdavStatus.SC_NOT_FOUND); 56 this.resourcePath = resourcePath; 57 this.label = label; 58 } 59 60 65 public String getResourcePath() { 66 return resourcePath; 67 } 68 69 74 public String getLabel() { 75 return label; 76 } 77 } 78 79 | Popular Tags |