Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit f4b06e6

Browse files
Improve "Unsupported column" exception message
1 parent 7d097ee commit f4b06e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQLite3JS/js/SQLite3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
case SQLite3.Datatype["null"]:
109109
return null;
110110
default:
111-
throw new Error('Unsupported column type.');
111+
throw new Error('Unsupported column type in column ' + index);
112112
}
113113
}
114114
});

0 commit comments

Comments
 (0)