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

alibaba / java-dns-cache-manipulator / 1267

pending completion
1267

push

Appveyor

oldratlee
chore(ci): upgrade CI JDK 🤖

527 of 645 relevant lines covered (81.71%)

0.82 hits per line

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

50.0
/library/src/main/java/com/alibaba/dcm/DnsCacheManipulatorException.java
1
package com.alibaba.dcm;
2

3
/**
4
 * Thrown to indicate that the operation of {@link DnsCacheManipulator} failed.
5
 *
6
 * @author Jerry Lee (oldratlee at gmail dot com)
7
 * @see DnsCacheManipulator
8
 */
9
public final class DnsCacheManipulatorException extends RuntimeException {
10
    private static final long serialVersionUID = -7843069964883320844L;
11

12
    /**
13
     * Constructs a {@link DnsCacheManipulatorException} with the specified detail message.
14
     *
15
     * @param message the detail message.
16
     */
17
    public DnsCacheManipulatorException(String message) {
18
        super(message);
1✔
19
    }
1✔
20

21
    /**
22
     * Constructs a {@link DnsCacheManipulatorException} with the specified detail message and cause.
23
     *
24
     * @param message the detail message.
25
     * @param cause   the cause (which is saved for later retrieval by the
26
     *                {@link Throwable#getCause()} method).
27
     */
28
    public DnsCacheManipulatorException(String message, Throwable cause) {
29
        super(message, cause);
×
30
    }
×
31
}
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

© 2025 Coveralls, Inc