| OLD | NEW |
| 1 | 1 |
| 2 class SQLException native "*SQLException" { | 2 class SQLException native "*SQLException" { |
| 3 | 3 |
| 4 static final int CONSTRAINT_ERR = 6; |
| 5 |
| 6 static final int DATABASE_ERR = 1; |
| 7 |
| 8 static final int QUOTA_ERR = 4; |
| 9 |
| 10 static final int SYNTAX_ERR = 5; |
| 11 |
| 12 static final int TIMEOUT_ERR = 7; |
| 13 |
| 14 static final int TOO_LARGE_ERR = 3; |
| 15 |
| 16 static final int UNKNOWN_ERR = 0; |
| 17 |
| 18 static final int VERSION_ERR = 2; |
| 19 |
| 4 int code; | 20 int code; |
| 5 | 21 |
| 6 String message; | 22 String message; |
| 7 | 23 |
| 8 var dartObjectLocalStorage; | 24 var dartObjectLocalStorage; |
| 9 | 25 |
| 10 String get typeName() native; | 26 String get typeName() native; |
| 11 } | 27 } |
| OLD | NEW |