Package de.nordakademie.nxtsimulation.util

Examples of de.nordakademie.nxtsimulation.util.SimException


   */
  private void showExeptionMessage() {
    Runnable r = new Runnable() {
      public void run() {
        stopMotors();
        showError(new SimException(
            "Es ist ein Fehler aufgetreten, siehe Log."));
      }
    };
    configGui.getDisplay().asyncExec(r);
  }
View Full Code Here


    } catch (LineUnavailableException e) {
      Logger.getLogger(getClass()).error(
          "Es konnte keine Verbindung zum Standard-Aufnahme-Ger�t"
              + " des Computers hergestellt werden."
              + " Fehler: " + e.getMessage());
      throw new SimException(
          "Der Soundsensor konnte keine Verbindung zum"
              + " Aufnahme-Ger�t herstellen.");
    }
  }
View Full Code Here

TOP

Related Classes of de.nordakademie.nxtsimulation.util.SimException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.