summaryrefslogtreecommitdiffstats
path: root/dom/src/test/java/org/w3c/domts/DOMTestIncompatibleException.java
blob: 2a1c0e023dcb1922dc8c6c100e9959fec3bd580f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright (c) 2001-2004 World Wide Web Consortium,
 * (Massachusetts Institute of Technology, Institut National de
 * Recherche en Informatique et en Automatique, Keio University). All
 * Rights Reserved. This program is distributed under the W3C's Software
 * Intellectual Property License. This program is distributed in the
 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.
 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
 */


package org.w3c.domts;


/**
 * This exception represents a mismatch between the
 * requirements of the test (for example, entity preserving)
 * and the capabilities of the parser under test.
 * @author Curt Arnold
 */
public class DOMTestIncompatibleException
    extends Exception {
  private final String msg;

  private DOMTestIncompatibleException(String msg) {
    this.msg = msg;
  }

  /**
   *  Constructor from a ParserConfigurationException
   *  or reflection exception
   */
  public DOMTestIncompatibleException(Throwable ex,
                                      DocumentBuilderSetting setting) {
    if (ex != null) {
      msg = ex.toString();
    }
    else {
      if (setting != null) {
        msg = setting.toString();
      }
      else {
        msg = super.toString();
      }
    }
  }

  public static DOMTestIncompatibleException incompatibleFeature(String feature,
      String version) {
    StringBuffer buf = new StringBuffer(
        "Implementation does not support feature \"");
    buf.append(feature);
    buf.append("\" version=\"");
    buf.append(version);
    buf.append("\".");
    return new DOMTestIncompatibleException(buf.toString());
  }

  public static DOMTestIncompatibleException incompatibleLoad(String href,
      String contentType) {
    StringBuffer buf = new StringBuffer(
        "Document is incompatible with content type, \"");
    buf.append(href);
    buf.append("\" not available for =\"");
    buf.append(contentType);
    buf.append("\".");
    return new DOMTestIncompatibleException(buf.toString());
  }

  public String toString() {
    return msg;
  }

}