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

stripe / stripe-java / #16660

21 Nov 2024 09:08PM CUT coverage: 12.4%. Remained the same
#16660

push

github

ramya-stripe
Bump version to 28.2.0-beta.1

18860 of 152092 relevant lines covered (12.4%)

0.12 hits per line

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

0.0
/src/main/java/com/stripe/exception/CardException.java
1
package com.stripe.exception;
2

3
import lombok.Getter;
4

5
@Getter
6
public class CardException extends StripeException {
7
  private static final long serialVersionUID = 2L;
8

9
  private String param;
10
  private String declineCode;
11
  private String charge;
12

13
  /** Constructs a new card exception with the specified details. */
14
  public CardException(
15
      String message,
16
      String requestId,
17
      String code,
18
      String param,
19
      String declineCode,
20
      String charge,
21
      Integer statusCode,
22
      Throwable e) {
23
    super(message, requestId, code, statusCode, e);
×
24
    this.param = param;
×
25
    this.declineCode = declineCode;
×
26
    this.charge = charge;
×
27
  }
×
28
}
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