IllegalAnnotationTargetException.java 308 B

123456789101112
  1. package me.lortseam.completeconfig.exception;
  2. /**
  3. * Thrown to indicate that an annotation targets an illegal or inappropriate member.
  4. */
  5. public class IllegalAnnotationTargetException extends RuntimeException {
  6. public IllegalAnnotationTargetException(String message) {
  7. super(message);
  8. }
  9. }