mirror of
https://github.com/ProjectSWGCore/MobileScriptBuilder.git
synced 2026-07-15 00:07:39 -04:00
16 lines
521 B
Java
16 lines
521 B
Java
package waveTools.msb.resources;
|
|
|
|
import java.awt.Component;
|
|
|
|
import javax.swing.JOptionPane;
|
|
|
|
public class Helpers {
|
|
public static void showMessageBox(Component parent, String message) {
|
|
JOptionPane.showMessageDialog(parent, message, "Mobile Script Builder", JOptionPane.INFORMATION_MESSAGE, null);
|
|
}
|
|
|
|
public static void showExceptionError(Component parent, String stackTrace) {
|
|
JOptionPane.showMessageDialog(parent, "ERROR " + stackTrace, "Mobile Script Builder - ERROR", JOptionPane.ERROR_MESSAGE, null);
|
|
}
|
|
}
|