All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sentry.exception.SentryHttpClientException Maven / Gradle / Ivy

There is a newer version: 8.0.0-rc.4
Show newest version
package io.sentry.exception;

import org.jetbrains.annotations.Nullable;

/**
 * Used for holding a HTTP client error, for example. An integration that does not throw when API
 * returns 5xx.
 */
public final class SentryHttpClientException extends Exception {
  private static final long serialVersionUID = 348162238030337390L;

  public SentryHttpClientException(final @Nullable String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy