Example usage for org.apache.commons.math3.exception DimensionMismatchException subclass-usage

List of usage examples for org.apache.commons.math3.exception DimensionMismatchException subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.exception DimensionMismatchException subclass-usage.

Usage

From source file com.clust4j.except.NonUniformMatrixException.java

public class NonUniformMatrixException extends DimensionMismatchException {
    private static final long serialVersionUID = 4638430875804061847L;

    public NonUniformMatrixException(int wrong, int expected) {
        super(wrong, expected);
    }