File size: 408 Bytes
f7a6add
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class PCSWMMError(RuntimeError):
    """Base exception for the SDK."""


class ProjectNotOpenError(PCSWMMError):
    """Raised when a PCSWMM project is required but is not open."""


class LayerNotFoundError(PCSWMMError):
    """Raised when a requested PCSWMM map layer is unavailable."""


class ResultsNotAvailableError(PCSWMMError):
    """Raised when simulation output or graph files are unavailable."""