package matrice;
/**
*
* @author Amel Dzanic
*/
public class MatricaException extends Exception {
/**
* Creates a new instance of <code>MatricaException</code>
* without detail message.
*/
public MatricaException() {
}
/**
* Constructs an instance of <code>MatricaException</code>
* with the specified detail message.
* @param msg the detail message.
*/
public MatricaException(String msg) {
super(msg);
}
}
Klasa izuzetka koju cemo koristiti ukoliko se desi neka ne predvidjena operacija.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.