Package example

Source Code of example.ErrorThrow

package example;

import mikera.arrayz.INDArray;
import mikera.matrixx.impl.IdentityMatrix;
import mikera.vectorz.util.Errors;

public class ErrorThrow {

  public static void main(String[] args) throws Throwable {
    INDArray a=IdentityMatrix.create(10);
    throw Errors.immutable(a);
  }
}
TOP

Related Classes of example.ErrorThrow

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.