1 2 17 18 package org.apache.poi.hpsf; 19 20 33 public class UnexpectedPropertySetTypeException extends HPSFException 34 { 35 36 39 public UnexpectedPropertySetTypeException() 40 { 41 super(); 42 } 43 44 45 51 public UnexpectedPropertySetTypeException(final String msg) 52 { 53 super(msg); 54 } 55 56 57 64 public UnexpectedPropertySetTypeException(final Throwable reason) 65 { 66 super(reason); 67 } 68 69 70 78 public UnexpectedPropertySetTypeException(final String msg, 79 final Throwable reason) 80 { 81 super(msg, reason); 82 } 83 84 } 85 | Popular Tags |