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

knowledgepixels / nanodash / 17837235071

18 Sep 2025 05:58PM UTC coverage: 13.87%. Remained the same
17837235071

push

github

tkuhn
chore: Remove serialVersionUIDs

443 of 4022 branches covered (11.01%)

Branch coverage included in aggregate %.

1133 of 7341 relevant lines covered (15.43%)

0.68 hits per line

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

0.0
src/main/java/com/knowledgepixels/nanodash/page/ErrorPage.java
1
package com.knowledgepixels.nanodash.page;
2

3
import com.knowledgepixels.nanodash.component.TitleBar;
4
import org.apache.wicket.request.http.WebResponse;
5
import org.apache.wicket.request.mapper.parameter.PageParameters;
6

7
/**
8
 * ErrorPage is a Wicket page that serves as a generic error page.
9
 */
10
public class ErrorPage extends NanodashPage {
11

12
    /**
13
     * The mount path for the error page.
14
     */
15
    public static final String MOUNT_PATH = "/error";
16

17
    /**
18
     * {@inheritDoc}
19
     */
20
    @Override
21
    public String getMountPath() {
22
        return MOUNT_PATH;
×
23
    }
24

25
    /**
26
     * Default constructor for ErrorPage.
27
     * Initializes the page with the provided parameters.
28
     *
29
     * @param parameters Page parameters to initialize the page.
30
     */
31
    public ErrorPage(final PageParameters parameters) {
32
        super(parameters);
×
33
        add(new TitleBar("titlebar", this, null));
×
34
    }
×
35

36
    /**
37
     * {@inheritDoc}
38
     */
39
    @Override
40
    protected void configureResponse(WebResponse response) {
41
        super.configureResponse(response);
×
42
    }
×
43

44
    /**
45
     * {@inheritDoc}
46
     */
47
    @Override
48
    public boolean isVersioned() {
49
        return false;
×
50
    }
51

52
    /**
53
     * {@inheritDoc}
54
     */
55
    @Override
56
    public boolean isErrorPage() {
57
        return true;
×
58
    }
59

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