Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 835 | chris | 1 | package com.gebauz.bauzoid.app; |
| 2 | |||
| 3 | /** Custom Bauzoid engine exception. */ |
||
| 4 | @SuppressWarnings("serial") |
||
| 5 | public class BauzoidException extends Exception |
||
| 6 | { |
||
| 7 | /** Constructor. */ |
||
| 8 | public BauzoidException(String message) |
||
| 9 | { |
||
| 10 | super(message); |
||
| 11 | |||
| 12 | /* Toast toast = Toast.makeText(mContext, message, Toast.LENGTH_LONG); |
||
| 13 | toast.show();*/ |
||
| 14 | } |
||
| 15 | |||
| 16 | } |
||
| 17 | |||
| 18 |