Back to project page AutoHosts.
The source code is released under:
MIT License
If you think the Android project AutoHosts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yeyaxi.AutoHosts; /*from w w w.j a v a 2 s . co m*/ public class UnableToMountSystemException extends Exception { public UnableToMountSystemException (Throwable ex) { super(ex); } public UnableToMountSystemException (String message) { super(message); } public UnableToMountSystemException (String message, Throwable ex) { super(message, ex); } }