• 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/DecoratorException.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
/**
10
 * Exception thrown by column decorators. If a decorator need to throw a checked exception this should be nested in a
11
 * DecoratorException.
12
 */
13
public class DecoratorException extends BaseNestableJspTagException {
14

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

20
    /**
21
     * Constructor for DecoratorException.
22
     *
23
     * @param source
24
     *            Class where the exception is generated
25
     * @param message
26
     *            message
27
     */
28
    public DecoratorException(final Class<?> source, final String message) {
29
        super(source, message);
×
30
    }
×
31

32
    /**
33
     * Constructor for DecoratorException.
34
     *
35
     * @param source
36
     *            Class where the exception is generated
37
     * @param message
38
     *            message
39
     * @param cause
40
     *            previous exception
41
     */
42
    public DecoratorException(final Class<?> source, final String message, final Throwable cause) {
43
        super(source, message, cause);
×
44
    }
×
45

46
    /**
47
     * Gets the severity.
48
     *
49
     * @return the severity
50
     *
51
     * @see org.displaytag.exception.BaseNestableJspTagException#getSeverity()
52
     */
53
    @Override
54
    public SeverityEnum getSeverity() {
55
        return SeverityEnum.ERROR;
×
56
    }
57

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