1 23 24 package org.apache.webdav.lib; 25 26 31 public class WebdavException extends RuntimeException { 32 33 34 public static final String NOT_IMPLEMENTED = "this method is not implemented"; 35 36 37 public static final String RELATIVE_FILE = "this method is not supported with relative paths"; 38 39 public WebdavException(Exception e) { 40 super(e.getMessage()); 41 } 42 43 public WebdavException(String msg) { 44 super(msg); 45 } 46 } 47 | Popular Tags |