mirror of
https://github.com/github/codeql.git
synced 2026-02-13 13:41:08 +01:00
18 lines
366 B
Plaintext
18 lines
366 B
Plaintext
/**
|
|
* @name Encoding error
|
|
* @description Encoding errors cause failures at runtime and prevent analysis of the code.
|
|
* @kind problem
|
|
* @tags quality
|
|
* reliability
|
|
* correctness
|
|
* @problem.severity error
|
|
* @sub-severity low
|
|
* @precision high
|
|
* @id py/encoding-error
|
|
*/
|
|
|
|
import python
|
|
|
|
from EncodingError error
|
|
select error, error.getMessage()
|