package matrix; import java.awt.Dimension; class VectorDimensionError extends Error { public int size1; public int size2; public VectorDimensionError(Vector v1, Vector v2) { size1 = v1.size(); size2 = v2.size(); //{{INIT_CONTROLS //}} } //{{DECLARE_CONTROLS //}} }