source: waflib/Errors.py @ c101fe1

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since c101fe1 was 0fa325b, checked in by Paul Brossier <piem@piem.org>, 10 years ago

waf: unpack

  • Property mode set to 100644
File size: 1008 bytes
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5import traceback,sys
6class WafError(Exception):
7        def __init__(self,msg='',ex=None):
8                self.msg=msg
9                assert not isinstance(msg,Exception)
10                self.stack=[]
11                if ex:
12                        if not msg:
13                                self.msg=str(ex)
14                        if isinstance(ex,WafError):
15                                self.stack=ex.stack
16                        else:
17                                self.stack=traceback.extract_tb(sys.exc_info()[2])
18                self.stack+=traceback.extract_stack()[:-1]
19                self.verbose_msg=''.join(traceback.format_list(self.stack))
20        def __str__(self):
21                return str(self.msg)
22class BuildError(WafError):
23        def __init__(self,error_tasks=[]):
24                self.tasks=error_tasks
25                WafError.__init__(self,self.format_error())
26        def format_error(self):
27                lst=['Build failed']
28                for tsk in self.tasks:
29                        txt=tsk.format_error()
30                        if txt:lst.append(txt)
31                return'\n'.join(lst)
32class ConfigurationError(WafError):
33        pass
34class TaskRescan(WafError):
35        pass
36class TaskNotReady(WafError):
37        pass
Note: See TracBrowser for help on using the repository browser.