Example #1
0
def checking_data(space, location):
    exception = Exception()
    if (not space):
        exception.no_data()

    if (not location):
        exception.no_data()
Example #2
0
def checking_data(name, surname):
    exception = Exception()
    if(not name):
        exception.no_data()


    if(not surname):
        exception.no_data()
Example #3
0
def checking_data(name, location):
    exception = Exception()
    if(not name):
        exception.no_data()


    if(not location):
        exception.no_data()