IncompatibleMatrixDimensionException.java

// FILE. . . . . d:/hak/hlt/src/hlt/math/matrix/sources/IncompatibleMatrixDimensionException.java
// EDIT BY . . . Hassan Ait-Kaci
// ON MACHINE. . Hak-Laptop
// STARTED ON. . Mon Nov 18 15:58:59 2019


Copyright:  © by the author
Author:  Hassan Aït-Kaci
Version:  Last modified on Thu Dec 12 11:12:44 2019 by hak


package hlt.math.matrix;

package hlt.math.matrix documentation listing



This is the class of runtime exceptions specifically caused by a matrix dimension mismatch between two pairs of numbers of rows and columns.

See also:  Matrix

public class IncompatibleMatrixDimensionException extends RuntimeException
{
  

Contructs a new IncompatibleMatrixDimensionException with the given parameters.

  public IncompatibleMatrixDimensionException (int rows, int cols, int otherRows, int otherCols)
  {
    super("Incompatible matrix dimensions: ("+
	  rows+","+cols+") =/= ("+
	  otherRows+","+otherCols+")");
  }
}


This file was generated on Wed Dec 18 03:37:41 PST 2019 from file IncompatibleMatrixDimensionException.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci