1 2 17 18 package org.apache.poi.hpsf; 19 20 31 public class NoFormatIDException extends HPSFRuntimeException 32 { 33 34 37 public NoFormatIDException() 38 { 39 super(); 40 } 41 42 43 48 public NoFormatIDException(final String msg) 49 { 50 super(msg); 51 } 52 53 54 59 public NoFormatIDException(final Throwable reason) 60 { 61 super(reason); 62 } 63 64 65 71 public NoFormatIDException(final String msg, final Throwable reason) 72 { 73 super(msg, reason); 74 } 75 76 } 77 | Popular Tags |