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

hazendaz / httpunit / 755

14 Feb 2026 07:14PM UTC coverage: 80.526%. Remained the same
755

push

github

hazendaz
[ci] Fix badge

3213 of 4105 branches covered (78.27%)

Branch coverage included in aggregate %.

8245 of 10124 relevant lines covered (81.44%)

0.81 hits per line

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

0.0
/src/main/java/com/meterware/httpunit/HttpInternalErrorException.java
1
/*
2
 * SPDX-License-Identifier: MIT
3
 * See LICENSE file for details.
4
 *
5
 * Copyright 2000-2026 Russell Gold
6
 * Copyright 2021-2000 hazendaz
7
 */
8
package com.meterware.httpunit;
9

10
import java.net.HttpURLConnection;
11
import java.net.URL;
12

13
/**
14
 * This exception is thrown when an internal error is found on the server.
15
 **/
16
public class HttpInternalErrorException extends HttpException {
17

18
    /** The Constant serialVersionUID. */
19
    private static final long serialVersionUID = 1L;
20

21
    /**
22
     * construct an internal http error form an url.
23
     *
24
     * @param url
25
     *            the url
26
     */
27
    public HttpInternalErrorException(URL url) {
28
        super(HttpURLConnection.HTTP_INTERNAL_ERROR, "Internal Error", url);
×
29
    }
×
30

31
    /**
32
     * construct an internal HTTP Error from a URL and a throwable.
33
     *
34
     * @param url
35
     *            the url
36
     * @param t
37
     *            the t
38
     */
39
    public HttpInternalErrorException(URL url, Throwable t) {
40
        super(HttpURLConnection.HTTP_INTERNAL_ERROR, t.toString(), url, t);
×
41
    }
×
42

43
}
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

© 2026 Coveralls, Inc