Commit 89e49278 authored by Sascha Schirra's avatar Sascha Schirra
Browse files

Refactory: Moving Errors in a error module

parent 07722d90
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -23,6 +23,10 @@ Install and execute Ropper
    $ python setup.py install
    $ ropper

You can also install Ropper with pip

    $ pip install ropper

If you want, you can use Ropper without installation

    $ ./ropper.py
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ from .console import Console
from .options import Options
from . common.error import RopperError

VERSION='1.1.0'
VERSION='1.1.0_dev'

def start(args):
    try:
+4 −0
Original line number Diff line number Diff line
@@ -26,3 +26,7 @@ class LoaderError(RopperError):

class ArgumentError(RopperError):
    pass


class PrinterError(RopperError):
    pass
 No newline at end of file
+1 −2
Original line number Diff line number Diff line
@@ -22,10 +22,9 @@ from ropperapp.common.abstract import *
from sys import stdout
from ropperapp.loaders.loader import Type
from ropperapp.common.utils import *
from ropperapp.common.error import PrinterError


class PrinterError(BaseException):
    pass


class PrinterMeta(type):
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

from setuptools import setup, find_packages

version = "1.1.0"
version = "1.1.0_dev"
package_name = "ropper"
package_dir = "ropper"
package_description = """