mev-4.0.01/source/org/tigr/microarray/mev/file/agilent/ColumnMismatchException.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 package org.tigr.microarray.mev.file.agilent;
2 26 Feb 07 jari 2
2 26 Feb 07 jari 3 /*
2 26 Feb 07 jari 4  * Created on Apr 14, 2004
2 26 Feb 07 jari 5  */
2 26 Feb 07 jari 6
2 26 Feb 07 jari 7 /**
2 26 Feb 07 jari 8  * Custom Exception for the case when the column Header Strings did not contain
2 26 Feb 07 jari 9  * the same number of columns
2 26 Feb 07 jari 10  * @author vu
2 26 Feb 07 jari 11  */
2 26 Feb 07 jari 12 public class ColumnMismatchException extends Exception {
2 26 Feb 07 jari 13   public ColumnMismatchException(String s) {
2 26 Feb 07 jari 14     super(s);
2 26 Feb 07 jari 15   }
2 26 Feb 07 jari 16 }