14 lines
452 B
Objective-C
14 lines
452 B
Objective-C
//
|
|
// MPException.m
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 19.04.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPException.h"
|
|
#import "MPException_Private.h"
|
|
|
|
NSString *MPIllegalSymbolException = @"MPIllegalSymbolException";
|
|
NSString *MPIllegalSymbolExceptionReason = @"Only NSString and MPFunction objects are valid symbols.";
|
|
NSString *MPIllegalSymbolExceptionSymbolKey = @"MPIllegalSymbolExceptionSymbolKey"; |