001 package net.sourceforge.retroweaver.runtime.java.lang;
002
003 public class TypeNotPresentException extends RuntimeException {
004
005 private String typeName;
006
007 public TypeNotPresentException(String typeName, Throwable cause) {
008 super("type: " + typeName, cause);
009
010 this.typeName = typeName;
011 }
012
013 public String typeName() {
014 return typeName;
015 }
016
017 }