Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kevinsdooapp/3227300 to your computer and use it in GitHub Desktop.
Save kevinsdooapp/3227300 to your computer and use it in GitHub Desktop.
IllegalLogarithmicRangeException
/**
* Exception to be thrown when a bound value isn't supported by the logarithmic axis<br>
* <br>
*
* @author Kevin Senechal mailto: kevin.senechal@dooapp.com
*
*/
public class IllegalLogarithmicRangeException extends Exception {
/**
* @param string
*/
public IllegalLogarithmicRangeException(String message) {
super(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment