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

eu.toolchain.serializer.processor.BrokenException Maven / Gradle / Ivy

The newest version!
package eu.toolchain.serializer.processor;

import java.util.function.Consumer;
import javax.annotation.processing.Messager;
import lombok.Getter;

public class BrokenException extends RuntimeException {
  @Getter
  private final Consumer writer;

  public BrokenException(final String message, final Consumer writer) {
    super(message);
    this.writer = writer;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy