Artifact 3c8954df51b11d80636e709ad64f6fe73b74595ed3d74ee4e6db1588e4dcb373:
- File
src/exceptions/OFDeleteDirectoryFailedException.m
— part of check-in
[c5ef582958]
at
2013-03-04 17:20:15
on branch trunk
— Replace BOOL with bool.
The only places where BOOL is left are those where they are required by
the ABI. (user: js, size: 1576) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <stdlib.h> #import "OFDeleteDirectoryFailedException.h" #import "OFString.h" #import "common.h" @implementation OFDeleteDirectoryFailedException + (instancetype)exceptionWithClass: (Class)class path: (OFString*)path_ { return [[[self alloc] initWithClass: class path: path_] autorelease]; } - initWithClass: (Class)class { @try { [self doesNotRecognizeSelector: _cmd]; } @catch (id e) { [self release]; @throw e; } abort(); } - initWithClass: (Class)class path: (OFString*)path { self = [super initWithClass: class]; @try { _path = [path copy]; _errNo = GET_ERRNO; } @catch (id e) { [self release]; @throw e; } return self; } - (void)dealloc { [_path release]; [super dealloc]; } - (OFString*)description { return [OFString stringWithFormat: @"Failed to delete directory %@ in class %@! " ERRFMT, _path, _inClass, ERRPARAM]; } - (int)errNo { return _errNo; } - (OFString*)path { OF_GETTER(_path, false) } @end