• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

xmlunit / xmlunit / 3f7651ec-f6b5-44df-b60a-ba2dbc5d7339

21 Jun 2025 01:18PM CUT coverage: 91.769%. Remained the same
3f7651ec-f6b5-44df-b60a-ba2dbc5d7339

push

circleci

web-flow
Merge pull request #305 from xmlunit/extend-compat-test-range

add additional compatibility tests

4014 of 4722 branches covered (85.01%)

11774 of 12830 relevant lines covered (91.77%)

2.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/xmlunit-core/src/main/java/org/xmlunit/ConfigurationException.java
1
/*
2
  This file is licensed to You under the Apache License, Version 2.0
3
  (the "License"); you may not use this file except in compliance with
4
  the License.  You may obtain a copy of the License at
5

6
  http://www.apache.org/licenses/LICENSE-2.0
7

8
  Unless required by applicable law or agreed to in writing, software
9
  distributed under the License is distributed on an "AS IS" BASIS,
10
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
  See the License for the specific language governing permissions and
12
  limitations under the License.
13
*/
14
package org.xmlunit;
15

16
/**
17
 * Exception thrown when anything inside JAXP throws a
18
 * *ConfigurationException.
19
 */
20
public class ConfigurationException extends XMLUnitException {
21
    private static final long serialVersionUID = 3976394040594872937L;
22

23
    /**
24
     * Creates a new exception from a cause.
25
     * @param cause the root cause
26
     */
27
    public ConfigurationException(Throwable cause) {
28
        super(cause);
1✔
29
    }
1✔
30

31
    /**
32
     * Creates a new exception from a cause and a custom message.
33
     * @param message a custom message
34
     * @param cause the root cause
35
     * @since XMLUnit 2.6.0
36
     */
37
    public ConfigurationException(String message, Throwable cause) {
38
        super(cause);
×
39
    }
×
40
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc