mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-15 15:15:06 -05:00
16 lines
277 B
Python
16 lines
277 B
Python
# -*- coding: utf-8 -*-
|
|
class OutOfBoundsError(ValueError):
|
|
"""
|
|
Used to indicate a wrong value, for example δ < 1.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class InsufficientSamplesError(ValueError):
|
|
"""
|
|
Used to indicate the number of samples given is too small.
|
|
"""
|
|
|
|
pass
|