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

de.bottlecaps.markup.BlitzIxmlException Maven / Gradle / Ivy

// Copyright (c) 2023-2024 Gunther Rademacher. Provided under the Apache 2 License.

package de.bottlecaps.markup;

import de.bottlecaps.markup.blitz.Errors;

public class BlitzIxmlException extends BlitzException {
  private static final long serialVersionUID = 1L;

  private Errors error;

  public BlitzIxmlException(Errors error, String message) {
    super(message);
    this.error = error;
  }

  public Errors getError() {
    return error;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy