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

com.hubspot.chrome.devtools.client.core.runtime.ExceptionRevokedEvent Maven / Gradle / Ivy

There is a newer version: 94.0.4606.61
Show newest version
package com.hubspot.chrome.devtools.client.core.runtime;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Issued when unhandled exception was revoked.
 */
public final class ExceptionRevokedEvent extends Event {
  private String reason;

  private Integer exceptionId;

  @JsonCreator
  public ExceptionRevokedEvent(@JsonProperty("reason") String reason,
      @JsonProperty("exceptionId") Integer exceptionId) {
    this.reason = reason;
    this.exceptionId = exceptionId;
  }

  public String getReason() {
    return reason;
  }

  public Integer getExceptionId() {
    return exceptionId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy