Ejemplo n.º 1
0
def checking_data(space, location):
    exception = Exception()
    if (not space):
        exception.no_data()

    if (not location):
        exception.no_data()
Ejemplo n.º 2
0
def checking_data(name, surname):
    exception = Exception()
    if(not name):
        exception.no_data()


    if(not surname):
        exception.no_data()
Ejemplo n.º 3
0
def checking_data(name, location):
    exception = Exception()
    if(not name):
        exception.no_data()


    if(not location):
        exception.no_data()