Skip to content

Commit

Permalink
Reorganizing package arborescence
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximeGrolleau committed Dec 2, 2013
1 parent a4c4d34 commit 8a76d54
Show file tree
Hide file tree
Showing 110 changed files with 50,784 additions and 0 deletions.
1,255 changes: 1,255 additions & 0 deletions core/math/src/main/java/org/arakhne/afc/math/Matrix2f.java

Large diffs are not rendered by default.

3,496 changes: 3,496 additions & 0 deletions core/math/src/main/java/org/arakhne/afc/math/Matrix3f.java

Large diffs are not rendered by default.

1,960 changes: 1,960 additions & 0 deletions core/math/src/main/java/org/arakhne/afc/math/Matrix4f.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
* $Id$
*
* Copyright (C) 2010-2011 Janus Core Developers
* Copyright (C) 2012 Stéphane GALLAND
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.arakhne.afc.math;



/** Exception for all the singular matrices.
*
* @author $Author: galland$
* @version $FullVersion$
* @mavengroupid $GroupId$
* @mavenartifactid $ArtifactId$
*/
public class SingularMatrixException extends RuntimeException {

private static final long serialVersionUID = 2834240107372614319L;

/**
*/
public SingularMatrixException() {
//
}

/**
* @param message
*/
public SingularMatrixException(String message) {
super(message);
}

/**
* @param cause
*/
public SingularMatrixException(Throwable cause) {
super(cause);
}

/**
* @param message
* @param cause
*/
public SingularMatrixException(String message, Throwable cause) {
super(message, cause);
}

}

0 comments on commit 8a76d54

Please sign in to comment.