All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cosysoft.device.shell.AndroidSdkException Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
package com.github.cosysoft.device.shell;

import com.github.cosysoft.device.exception.NestedException;

public class AndroidSdkException extends NestedException {
  private static final long serialVersionUID = 5431510243540521938L;

  public AndroidSdkException(String message) {
    super(message);
  }

  public AndroidSdkException(Throwable t) {
    super(t);
  }

  public AndroidSdkException(String message, Throwable t) {
    super(message, t);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy