Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Azure
GitHub Repository: Azure/Azure-Sentinel-Notebooks
Path: blob/master/src/SentinelUtilities/SentinelExceptions/input_error.py
3255 views
1
# -------------------------------------------------------------------------
2
3
# Copyright (c) Microsoft Corporation. All rights reserved.
4
# Licensed under the MIT License. See License.txt in the project root for
5
# license information.
6
# --------------------------------------------------------------------------
7
"""
8
input_error module:
9
This module include custom exceptions
10
"""
11
12
13
class InputError(ValueError):
14
15
""" This class provides custom exception for validating input data """
16
17