1 2 17 18 package org.apache.poi.hpsf; 19 20 32 public class NoPropertySetStreamException extends HPSFException 33 { 34 35 38 public NoPropertySetStreamException() 39 { 40 super(); 41 } 42 43 44 45 50 public NoPropertySetStreamException(final String msg) 51 { 52 super(msg); 53 } 54 55 56 57 62 public NoPropertySetStreamException(final Throwable reason) 63 { 64 super(reason); 65 } 66 67 68 69 75 public NoPropertySetStreamException(final String msg, 76 final Throwable reason) 77 { 78 super(msg, reason); 79 } 80 81 } 82 | Popular Tags |