mirror of
https://github.com/github/codeql.git
synced 2025-12-26 21:56:39 +01:00
17 lines
349 B
Plaintext
17 lines
349 B
Plaintext
/**
|
|
* @name Encoding error
|
|
* @description Encoding errors cause failures at runtime and prevent analysis of the code.
|
|
* @kind problem
|
|
* @tags reliability
|
|
* correctness
|
|
* @problem.severity error
|
|
* @sub-severity low
|
|
* @precision high
|
|
* @id py/encoding-error
|
|
*/
|
|
|
|
import python
|
|
|
|
from EncodingError error
|
|
select error, error.getMessage()
|