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

Commit

Permalink
Improve "Unsupported column" exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
superquadratic committed Jun 25, 2012
1 parent 7d097ee commit f4b06e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLite3JS/js/SQLite3.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
case SQLite3.Datatype["null"]:
return null;
default:
throw new Error('Unsupported column type.');
throw new Error('Unsupported column type in column ' + index);
}
}
});
Expand Down

0 comments on commit f4b06e6

Please sign in to comment.