File: RrdException.cs

package info (click to toggle)
rrdtool 1.9.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,772 kB
  • sloc: ansic: 39,371; sh: 1,810; perl: 1,268; cs: 652; makefile: 573; python: 169; ruby: 61; awk: 30
file content (16 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace dnrrdlib
{
    public class RrdException : Exception
    {
        public RrdException()
            : base(rrd.Get_Error())
        {
            rrd.rrd_clear_error();
        }
    }
}