LASUnknownUnitError   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 0
1
class LASDataError(Exception):
2
3
    '''Error during reading of numerical data from LAS file.'''
4
    pass
5
6
7
class LASHeaderError(Exception):
8
9
    '''Error during reading of header data from LAS file.'''
10
    pass
11
12
13
class LASUnknownUnitError(Exception):
14
15
    '''Error of unknown unit in LAS file.'''
16
    pass
17