File: exceptions.py

package info (click to toggle)
python-rtree 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 444 kB
  • sloc: python: 3,434; makefile: 97; sh: 52
file content (7 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from __future__ import annotations


class RTreeError(Exception):
    "RTree exception, indicates a RTree-related error."

    pass