1 16 package org.apache.commons.math; 17 18 import java.io.Serializable ; 19 20 24 public class MathConfigurationException extends MathException implements Serializable { 25 26 27 static final long serialVersionUID = -7958299004965931723L; 28 29 32 public MathConfigurationException() { 33 this(null, null); 34 } 35 36 40 public MathConfigurationException(final String message) { 41 this(message, null); 42 } 43 44 49 public MathConfigurationException( 50 final String message, 51 final Throwable throwable) { 52 super(message, throwable); 53 } 54 55 59 public MathConfigurationException(final Throwable throwable) { 60 this(null, throwable); 61 } 62 } 63 | Popular Tags |