Back to project page bluetooth.
The source code is released under:
MIT License
If you think the Android project bluetooth 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.mauriciotogneri.bluetooth.beacons; //from w w w .java 2 s. c o m public class UnsupportedBluetoothLeException extends Exception { private static final long serialVersionUID = -2865765651529657978L; public UnsupportedBluetoothLeException(int currentVersion) { super("Minimum version required: 18 - Current version: " + currentVersion); } }