Advertisement
duc-phan

Untitled

Dec 15th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. ACMEPort port = new ACMEPort(12);
  2. try {
  3.     port.open();
  4. } catch (DeviceResponseException e) {
  5.     reportPortError(e);
  6.     logger.log("Device response exception", e);
  7. } catch (ATM1212UnlockedException e) {
  8.     reportPortError(e);
  9.     logger.log("Unlock exception", e);
  10. } catch (GMXError e) {
  11.     reportPortError(e);
  12.     logger.log("Device response exception");
  13. } finally {
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement