• 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/FactoryInstantiationException.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
import org.displaytag.properties.TableProperties;
11

12
/**
13
 * Exception thrown when displaytag is unable to instantiate a class specified by the user in the properties file.
14
 */
15
public class FactoryInstantiationException extends BaseNestableRuntimeException {
16

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

22
    /**
23
     * Instantiate a new FactoryInstantiationException.
24
     *
25
     * @param source
26
     *            Class where the exception is generated
27
     * @param propertyName
28
     *            name of the property
29
     * @param propertyValue
30
     *            value for the property (class name)
31
     * @param cause
32
     *            previous exception
33
     */
34
    public FactoryInstantiationException(final Class<? extends TableProperties> source, final String propertyName,
35
            final String propertyValue, final Throwable cause) {
36
        super(source, Messages.getString("FactoryInstantiationException.msg", //$NON-NLS-1$
×
37
                new Object[] { propertyValue, propertyName }), cause);
38
    }
×
39

40
    /**
41
     * Gets the severity.
42
     *
43
     * @return the severity
44
     *
45
     * @see org.displaytag.exception.BaseNestableJspTagException#getSeverity()
46
     */
47
    @Override
48
    public SeverityEnum getSeverity() {
49
        return SeverityEnum.FATAL;
×
50
    }
51

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