UintOverflow is returned when a call would downcast an unsigned integer to a type with too few bits to hold its value
| 202 | // would downcast an unsigned integer to a type |
| 203 | // with too few bits to hold its value |
| 204 | type UintOverflow struct { |
| 205 | Value uint64 // value of the uint |
| 206 | FailedBitsize int // the bit size that couldn't fit the value |
| 207 | ctx string |
| 208 | } |
| 209 | |
| 210 | // Error implements the error interface |
| 211 | func (u UintOverflow) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected