01: package com.flexive.war.webdav.catalina;
02:
03: import javax.naming.Name;
04: import javax.naming.NameNotFoundException;
05:
06: /**
07: * Catalina sources cloned for packaging issues to the flexive source tree.
08: * Refactored to JDK 1.5 compatibility.
09: * Licensed under the Apache License, Version 2.0
10: * <p/>
11: * Immutable exception to avoid useless object creation by the proxy context.
12: * This should be used only by the proxy context. Actual contexts should return
13: * properly populated exceptions.
14: *
15: * @author <a href="mailto:remm@apache.org">Remy Maucherat</a>
16: * @author Markus Plesser (markus.plesser@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at)
17: */
18: public class ImmutableNameNotFoundException extends
19: NameNotFoundException {
20:
21: public void appendRemainingComponent(String name) {
22: }
23:
24: public void appendRemainingName(Name name) {
25: }
26:
27: public void setRemainingName(Name name) {
28: }
29:
30: public void setResolverName(Name name) {
31: }
32:
33: public void setRootCause(Throwable e) {
34: }
35:
36: }
|