eu.toolchain.serializer.processor.BrokenException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiny-serializer-processor Show documentation
Show all versions of tiny-serializer-processor Show documentation
A processor for the @AutoSerialize annotation
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