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

io.confluent.logredactor.internal.RedactionPolicyParseException Maven / Gradle / Ivy

package io.confluent.logredactor.internal;

import java.io.IOException;

/**
 * We throw this when we have json parsing exceptions instead of throwing
 * a jackson JsonMappingException or JsonParseException because that will
 * expose the jackson internals externally. Moreover, we relocate the
 * jackson classes to a different name, so the external jackson name would
 * be strange.
 */
public class RedactionPolicyParseException extends IOException {
  public RedactionPolicyParseException() {
    super();
  }

  public RedactionPolicyParseException(String details) {
    super(details);
  }

  public RedactionPolicyParseException(Throwable cause) {
    super(cause);
  }

  public RedactionPolicyParseException(String details, Throwable cause) {
    super(details, cause);
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy