added errorhandler
This commit is contained in:
parent
8ff5e2947e
commit
bf1195bb49
6 changed files with 68 additions and 0 deletions
10
pom.xml
10
pom.xml
|
@ -52,6 +52,16 @@
|
||||||
<artifactId>github-api</artifactId>
|
<artifactId>github-api</artifactId>
|
||||||
<version>1.127</version>
|
<version>1.127</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sun.mail</groupId>
|
||||||
|
<artifactId>javax.mail</artifactId>
|
||||||
|
<version>1.6.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>mysql</groupId>
|
||||||
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
|
<version>8.0.33</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.qtjambi</groupId>
|
<groupId>io.qtjambi</groupId>
|
||||||
<artifactId>qtjambi</artifactId>
|
<artifactId>qtjambi</artifactId>
|
||||||
|
|
|
@ -83,6 +83,7 @@ public class DownloadLevels {
|
||||||
fileOutputStream.write(dataBuffer, 0, bytesRead);
|
fileOutputStream.write(dataBuffer, 0, bytesRead);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
21
src/errorhandler/ErrorHandler.java
Normal file
21
src/errorhandler/ErrorHandler.java
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
package errorhandler;
|
||||||
|
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
|
||||||
|
import javax.swing.JOptionPane;
|
||||||
|
|
||||||
|
public class ErrorHandler {
|
||||||
|
|
||||||
|
public void newError(Throwable e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
|
||||||
|
StringWriter sw = new StringWriter();
|
||||||
|
PrintWriter pw = new PrintWriter(sw);
|
||||||
|
e.printStackTrace(pw);
|
||||||
|
|
||||||
|
JOptionPane.showMessageDialog(null, sw.toString() + "", e.getMessage(), JOptionPane.ERROR_MESSAGE);
|
||||||
|
System.exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
18
src/errorhandler/ErrorSubmission.java
Normal file
18
src/errorhandler/ErrorSubmission.java
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
package errorhandler;
|
||||||
|
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
import javax.mail.Authenticator;
|
||||||
|
import javax.mail.Message;
|
||||||
|
import javax.mail.MessagingException;
|
||||||
|
import javax.mail.PasswordAuthentication;
|
||||||
|
import javax.mail.Session;
|
||||||
|
import javax.mail.Transport;
|
||||||
|
import javax.mail.internet.InternetAddress;
|
||||||
|
import javax.mail.internet.MimeMessage;
|
||||||
|
|
||||||
|
public class ErrorSubmission {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -3,11 +3,14 @@ package main;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.zip.DataFormatException;
|
import java.util.zip.DataFormatException;
|
||||||
|
|
||||||
|
import javax.swing.JOptionPane;
|
||||||
|
|
||||||
import api.GetApiData;
|
import api.GetApiData;
|
||||||
import data.FetchData;
|
import data.FetchData;
|
||||||
import data.ManageFiles;
|
import data.ManageFiles;
|
||||||
import database.DatabaseManager;
|
import database.DatabaseManager;
|
||||||
import database.Sqlite;
|
import database.Sqlite;
|
||||||
|
import errorhandler.ErrorHandler;
|
||||||
import filestructure.CreateFileStructure;
|
import filestructure.CreateFileStructure;
|
||||||
import gui.LoadMenu;
|
import gui.LoadMenu;
|
||||||
import preload.PreChecks;
|
import preload.PreChecks;
|
||||||
|
@ -16,6 +19,16 @@ import settingsfunctions.LoadSettings;
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
public static void main(String[] args) throws IOException, DataFormatException {
|
public static void main(String[] args) throws IOException, DataFormatException {
|
||||||
|
|
||||||
|
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
|
||||||
|
@Override
|
||||||
|
public void uncaughtException(Thread t, Throwable e) {
|
||||||
|
ErrorHandler error = new ErrorHandler();
|
||||||
|
error.newError(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
LoadMenu load = new LoadMenu();
|
LoadMenu load = new LoadMenu();
|
||||||
load.onLoad();
|
load.onLoad();
|
||||||
|
@ -54,6 +67,10 @@ public class Main {
|
||||||
|
|
||||||
load.updateBar("Ladevorgang abgeschlossen");
|
load.updateBar("Ladevorgang abgeschlossen");
|
||||||
load.close();
|
load.close();
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.out.println("fehler");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,4 +10,5 @@
|
||||||
requires java.xml;
|
requires java.xml;
|
||||||
requires org.apache.commons.codec;
|
requires org.apache.commons.codec;
|
||||||
requires github.api;
|
requires github.api;
|
||||||
|
requires java.mail;
|
||||||
}
|
}
|
Loading…
Reference in a new issue