移除项目
老邱 authored at 2016-12-23 09:10:38
259.00 B
X
using System;

namespace NewLife.Queue.Storage.Exceptions
{
    public class ChunkFileNotExistException : Exception
    {
        public ChunkFileNotExistException(string fileName) : base(string.Format("Chunk file '{0}' not exist.", fileName)) { }
    }
}