Mercurial > MadButterfly
comparison Android/java/org/madbutterfly/InvalidStateException.java @ 493:1b6228092a57 Android_Skia
Java code for MadButterfly JNI.
This is Java code that access MadButterfly JNI interface.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 26 Nov 2009 15:02:51 +0800 |
parents | |
children | c468e397614d |
comparison
equal
deleted
inserted
replaced
492:e95598916dfb | 493:1b6228092a57 |
---|---|
1 package org.madbutterfly; | |
2 | |
3 import java.lang.Exception; | |
4 | |
5 class InvalidStateException extends Exception { | |
6 public InvalidStateException() { | |
7 super(); | |
8 } | |
9 public InvalidStateException(String msg) { | |
10 super(msg); | |
11 } | |
12 } |