优化ETL过滤模块
using System; namespace NewLife.Queue.Storage.Exceptions { public class ChunkFileNotExistException : Exception { public ChunkFileNotExistException(string fileName) : base(string.Format("Chunk file '{0}' not exist.", fileName)) { } } }