66 lines
1.8 KiB
Java
66 lines
1.8 KiB
Java
/*
|
|
============================================================
|
|
This is the "SpielException" file from Author: Philipp Kotte
|
|
written on: 16 / 10 / 2023 at: 07:42
|
|
============================================================
|
|
*/
|
|
package Domain.Exceptions;
|
|
|
|
public abstract class SpielException extends Exception {
|
|
/*------------------------------------------*/
|
|
// statische Konstanten
|
|
/*------------------------------------------*/
|
|
|
|
/*------------------------------------------*/
|
|
// statische Attribute(zB. zähler)
|
|
/*------------------------------------------*/
|
|
|
|
/*------------------------------------------*/
|
|
// Attribute jedes Objektes
|
|
/*------------------------------------------*/
|
|
private String message;
|
|
private int id;
|
|
|
|
/*------------------------------------------*/
|
|
// Konstruktoren (default und spezifische)
|
|
/*------------------------------------------*/
|
|
public SpielException() {
|
|
}
|
|
|
|
public SpielException(int id, String message) {
|
|
|
|
}
|
|
|
|
public SpielException(String message) {
|
|
|
|
}
|
|
|
|
/*------------------------------------------*/
|
|
// statische Methoden
|
|
/*------------------------------------------*/
|
|
|
|
/*------------------------------------------*/
|
|
// Getter und Setter
|
|
/*------------------------------------------*/
|
|
|
|
/*------------------------------------------*/
|
|
// @Overrides
|
|
/*------------------------------------------*/
|
|
|
|
public String getMessage() {
|
|
return this.message;
|
|
}
|
|
|
|
public int getID() {
|
|
return this.id;
|
|
}
|
|
|
|
/*------------------------------------------*/
|
|
// öffentliche Methodes
|
|
/*------------------------------------------*/
|
|
|
|
/*------------------------------------------*/
|
|
// Hilfsmethoden (privat)
|
|
/*------------------------------------------*/
|
|
}
|