01: // -- @(#)SizeMismatchException.java 1.4 99/03/22 02: 03: package uk.org.ponder.matrix; 04: 05: public class SizeMismatchException extends RuntimeException { 06: SizeMismatchException() { 07: super (); 08: } 09: 10: SizeMismatchException(String s) { 11: super(s); 12: } 13: }