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

hazendaz / displaytag / 1753

12 Feb 2026 03:17AM UTC coverage: 77.321% (-0.01%) from 77.334%
1753

push

github

web-flow
Merge pull request #1102 from hazendaz/renovate/javax-support-logback-monorepo

Update dependency ch.qos.logback:logback-classic to v1.5.29 (javax-support)

1438 of 2003 branches covered (71.79%)

Branch coverage included in aggregate %.

4034 of 5074 relevant lines covered (79.5%)

0.8 hits per line

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

0.0
/displaytag/src/main/java/org/displaytag/exception/TablePropertiesLoadException.java
1
/*
2
 * SPDX-License-Identifier: MIT
3
 * See LICENSE file for details.
4
 *
5
 * Copyright 2002-2026 Fabrizio Giustina, the Displaytag team
6
 */
7
package org.displaytag.exception;
8

9
import org.displaytag.Messages;
10

11
/**
12
 * Runtime exception thrown for problems in loading the (standard or user defined) property file.
13
 */
14
public class TablePropertiesLoadException extends BaseNestableRuntimeException {
15

16
    /**
17
     * Serial ID.
18
     */
19
    private static final long serialVersionUID = 899149338534L;
20

21
    /**
22
     * Constructor for TablePropertiesLoadException.
23
     *
24
     * @param source
25
     *            Class where the exception is generated
26
     * @param propertiesFileName
27
     *            properties file name
28
     * @param cause
29
     *            previous Exception
30
     */
31
    public TablePropertiesLoadException(final Class<?> source, final String propertiesFileName, final Throwable cause) {
32
        super(source, Messages.getString("TablePropertiesLoadException.msg", //$NON-NLS-1$
×
33
                new Object[] { propertiesFileName }), cause);
34
    }
×
35

36
    /**
37
     * Gets the severity.
38
     *
39
     * @return SeverityEnum.ERROR
40
     *
41
     * @see org.displaytag.exception.BaseNestableRuntimeException#getSeverity()
42
     * @see org.displaytag.exception.SeverityEnum
43
     */
44
    @Override
45
    public SeverityEnum getSeverity() {
46
        return SeverityEnum.ERROR;
×
47
    }
48

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