1 23 24 package org.objectweb.fractal.julia.asm; 25 26 34 35 class VisitException extends RuntimeException { 36 37 40 41 private final ClassGenerationException exception; 42 43 48 49 public VisitException (final ClassGenerationException exception) { 50 this.exception = exception; 51 } 52 53 58 59 public ClassGenerationException getException () { 60 return exception; 61 } 62 } 63 | Popular Tags |