1 16 17 package org.apache.poi.hpsf; 18 19 28 public abstract class VariantTypeException extends HPSFException 29 { 30 31 private Object value; 32 33 private long variantType; 34 35 36 37 44 public VariantTypeException(final long variantType, final Object value, 45 final String msg) 46 { 47 super(msg); 48 this.variantType = variantType; 49 this.value = value; 50 } 51 52 53 54 59 public long getVariantType() 60 { 61 return variantType; 62 } 63 64 65 66 71 public Object getValue() 72 { 73 return value; 74 } 75 76 } 77 | Popular Tags |