Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathPad/MPException.m
Kim Wittenburg 01acd87b05 First implementation (incomplete) of MPExpression and MPFunction.
Declared custom exceptions in MPException.h
2014-04-20 01:22:59 +02:00

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";