Update error.go

This commit is contained in:
Edoardo Ottavianelli
2025-03-08 09:23:38 +01:00
committed by GitHub
parent 88bcf279c2
commit 04aca098b3
+16 -1
View File
@@ -58,6 +58,20 @@ func GetErrorRegexes() []Error {
`(?i)safe mode restriction in effect`,
`(?i)uncaught exception`},
},
{
"ASP.Net error",
[]string{
`(?i)\"Message\"\:\"Invalid web service call`,
`(?i)\-\-\- End of inner exception stack trace \-\-\-`,
`(?i)Syntax error in string in query expression`},
},
{
"Python error",
[]string{
`(?i)Traceback \(most recent call last\)\:`,
`(?i)\(generated by waitress\)`,
`(?i)Syntax error in string in query expression`},
},
{
"General error",
[]string{
@@ -127,7 +141,8 @@ func GetErrorRegexes() []Error {
`(?i)macromedia\.jdbc\.sqlserver`,
`(?i)Zend_Db_(Adapter|Statement)_Sqlsrv_Exception`,
`(?i)com\.microsoft\.sqlserver\.jdbc`,
`(?i)SQL(Srv|Server)Exception`},
`(?i)SQL(Srv|Server)Exception`,
`(?i)Cannot initialize the data source object of OLE DB provider`},
},
{
"OracleDB error",